growi-plugin-package-data.ts 263 B

123456789101112
  1. import { GrowiPluginType } from '@growi/core';
  2. export type GrowiPluginDirective = {
  3. [key: string]: any,
  4. schemaVersion: number,
  5. types: GrowiPluginType[],
  6. }
  7. export type GrowiPluginPackageData = {
  8. [key: string]: any,
  9. growiPlugin: GrowiPluginDirective,
  10. }