UNPKG

amis-model-design

Version:

amis模型设计器

15 lines (14 loc) 437 B
/** * @file 大部分数据库都是这种形式,避免重复编写 */ import { BasePlugin } from '../../base/BasePlugin'; import { FormSchema } from '../../type'; export declare class GeneralDialectPlugin extends BasePlugin { static id: string; registerDatabaseDialectType(): { type: string; title: string; buildSettingForm: any; }; buildSettingForm(schema: FormSchema, env: string): void; }