renderer.ts 572 B

1234567891011121314151617181920
  1. import { XssOptionConfig } from '~/services/xss/xssOption';
  2. // export type GrowiHydratedEnv = {
  3. // DRAWIO_URI: string | null,
  4. // HACKMD_URI: string | null,
  5. // NO_CDN: string | null,
  6. // GROWI_CLOUD_URI: string | null,
  7. // GROWI_APP_ID_FOR_GROWI_CLOUD: string | null,
  8. // }
  9. export type RendererConfig = {
  10. isEnabledLinebreaks: boolean,
  11. isEnabledLinebreaksInComments: boolean,
  12. adminPreferredIndentSize: number,
  13. isIndentSizeForced: boolean,
  14. highlightJsStyleBorder: boolean,
  15. plantumlUri: string | null,
  16. blockdiagUri: string | null,
  17. } & XssOptionConfig;