renderer.ts 385 B

1234567891011121314
  1. import { XssOptionConfig } from '~/services/xss/xssOption';
  2. export type RendererConfig = {
  3. isSharedPage?: boolean
  4. isEnabledLinebreaks: boolean,
  5. isEnabledLinebreaksInComments: boolean,
  6. adminPreferredIndentSize: number,
  7. isIndentSizeForced: boolean,
  8. highlightJsStyleBorder: boolean,
  9. isEnabledMarp: boolean,
  10. drawioUri: string,
  11. plantumlUri: string,
  12. } & XssOptionConfig;