8 lines
137 B
TypeScript
Raw Normal View History

2021-06-28 12:34:29 +02:00
interface Field {
config: {};
toDB(value: any): any;
fromDB(value: any): any;
}
export function createField(type: string): Field;