UNPKG

amis-model-design

Version:

amis模型设计器

14 lines (13 loc) 418 B
import { BasePlugin } from '../../base/BasePlugin'; import { FormSchema } from '../../type'; export declare class PostgresDialectPlugin extends BasePlugin { static id: string; registerDatabaseDialectType(): { type: string; title: string; isRdbms: boolean; schemaLess: boolean; buildSettingForm: any; }; buildSettingForm(schema: FormSchema, env: string): void; }