amis-model-design
Version:
amis模型设计器
14 lines (13 loc) • 427 B
TypeScript
import { GeneralDialectPlugin } from './General';
import { FormSchema } from '../../type';
export declare class SQLServerDialectPlugin extends GeneralDialectPlugin {
static id: string;
registerDatabaseDialectType(): {
type: string;
title: string;
isRdbms: boolean;
schemaLess: boolean;
buildSettingForm: any;
};
buildSettingForm(schema: FormSchema, env: string): void;
}