mirror of
https://github.com/strapi/strapi.git
synced 2025-07-20 23:47:46 +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;
|