growi-plugin.ts 213 B

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