customize.ts 228 B

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