Skip to content

Commit

Permalink
🐛 fix: fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
arvinxx committed Aug 24, 2023
1 parent 350f416 commit a399ee7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/types/manifest.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { JSONSchema7, JSONSchema7Definition } from 'json-schema';
import { JSONSchema7 } from 'json-schema';

/**
* Plugin Schema
* @desc the schema of plugin, describe the api input of the function
* @desc the schema of plugin, de´scribe the api input of the function
* @nameCN 插件清单
* @descCN 描述一个插件的构成要素
*/
export interface PluginSchema extends Omit<JSONSchema7, 'type'> {
properties: {
[key: string]: JSONSchema7Definition;
[key: string]: JSONSchema7;
};
type: 'object';
}
Expand Down

0 comments on commit a399ee7

Please sign in to comment.