customize.ts 281 B

1234567891011
  1. import type { ColorScheme, GrowiThemeMetadata } from '@growi/core';
  2. export type IResLayoutSetting = {
  3. isContainerFluid: boolean,
  4. };
  5. export type IResGrowiTheme = {
  6. currentTheme: string,
  7. currentForcedColorScheme: ColorScheme,
  8. pluginThemesMetadatas: GrowiThemeMetadata[],
  9. }