UNPKG

@anoki/fse-common

Version:

Common types for FSE

17 lines (14 loc) 311 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 >