growi-plugin.ts 209 B

1234567
  1. export const GrowiPluginType = {
  2. Template: 'template',
  3. Style: 'style',
  4. Theme: 'theme',
  5. Script: 'script',
  6. } as const;
  7. export type GrowiPluginType = typeof GrowiPluginType[keyof typeof GrowiPluginType];