mirror of
https://github.com/strapi/strapi.git
synced 2025-07-18 22:45:47 +00:00
8 lines
137 B
TypeScript
8 lines
137 B
TypeScript
interface Field {
|
|
config: {};
|
|
toDB(value: any): any;
|
|
fromDB(value: any): any;
|
|
}
|
|
|
|
export function createField(type: string): Field;
|