2021-08-12 16:12:40 +02:00

11 lines
184 B
TypeScript

interface Field {
config: {};
toDB(value: any): any;
fromDB(value: any): any;
}
interface Attribute {
type: string
}
export function createField(attribute: Attribute): Field;