UNPKG

@anoki/fse-common

Version:

Common types for FSE

12 lines (11 loc) 312 B
import { Upload } from './upload-file'; import { WithBasicFields } from './with-basic-fields'; export type PersonTranslations = { description: string; }; export type Person = WithBasicFields<{ name: string; surname: string; description: string; previewImage?: Upload; }, PersonTranslations>;