@@ -1,5 +1,3 @@
-import type { ITemplate } from './template';
-
export type GrowiFacade = {
markdownRenderer?: {
optionsGenerators?: {
@@ -10,7 +8,4 @@ export type GrowiFacade = {
},
optionsMutators?: any,
- customTemplates?: {
- [pluginName: string]: ITemplate,
- }
};
@@ -1,9 +0,0 @@
-export type ITemplateIdentification = {
- id: string,
- locale: string,
-}
-export type ITemplate = ITemplateIdentification & {
- name: string,
- markdown: string,