gristlabs_grist-core/stubs/app/client/ui/CustomThemes.ts

13 lines
246 B
TypeScript
Raw Normal View History

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 {
};
}