mirror of
https://github.com/strapi/strapi.git
synced 2025-07-17 14:02:21 +00:00
11 lines
184 B
TypeScript
11 lines
184 B
TypeScript
interface Field {
|
|
config: {};
|
|
toDB(value: any): any;
|
|
fromDB(value: any): any;
|
|
}
|
|
|
|
interface Attribute {
|
|
type: string
|
|
}
|
|
export function createField(attribute: Attribute): Field;
|