mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
13 lines
246 B
TypeScript
13 lines
246 B
TypeScript
|
export type ProductFlavor = string;
|
||
|
|
||
|
// TODO: move CustomTheme type outside of stub code
|
||
|
export interface CustomTheme {
|
||
|
bodyClassName?: string;
|
||
|
wideLogo?: boolean;
|
||
|
};
|
||
|
|
||
|
export function getTheme(flavor: string): CustomTheme {
|
||
|
return {
|
||
|
};
|
||
|
}
|