growi-facade.ts 378 B

12345678910111213141516
  1. import type { ITemplate } from './template';
  2. export type GrowiFacade = {
  3. markdownRenderer?: {
  4. optionsGenerators?: {
  5. generateViewOptions?: any;
  6. customGenerateViewOptions?: any;
  7. generatePreviewOptions?: any;
  8. customGeneratePreviewOptions?: any;
  9. },
  10. optionsMutators?: any,
  11. },
  12. customTemplates?: {
  13. [pluginName: string]: ITemplate,
  14. }
  15. };