Alexandre Bodin a1e2fc6829 Init fields
2021-06-28 12:34:29 +02:00

8 lines
137 B
TypeScript

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