renderer.ts 352 B

12345678910111213
  1. import { XssOptionConfig } from '~/services/xss/xssOption';
  2. export type RendererConfig = {
  3. isEnabledLinebreaks: boolean,
  4. isEnabledLinebreaksInComments: boolean,
  5. adminPreferredIndentSize: number,
  6. isIndentSizeForced: boolean,
  7. highlightJsStyleBorder: boolean,
  8. plantumlUri: string | null,
  9. blockdiagUri: string | null,
  10. } & XssOptionConfig;