2022-08-11 10:20:50 +02:00

10 lines
184 B
TypeScript

import { Attribute } from './schema';
interface Field {
config: {};
toDB(value: any): any;
fromDB(value: any): any;
}
export function createField(attribute: Attribute): Field;