| 123456789101112 |
- import { GrowiPluginType } from '@growi/core';
- export type GrowiPluginDirective = {
- [key: string]: any,
- schemaVersion: number,
- types: GrowiPluginType[],
- }
- export type GrowiPluginPackageData = {
- [key: string]: any,
- growiPlugin: GrowiPluginDirective,
- }
|