@anoki/fse-common
Version:
Common types for FSE
17 lines (14 loc) • 304 B
text/typescript
import { WithBasicFields } from './with-basic-fields'
import { Upload } from './upload-file'
export type DocumentTranslations = {
name: string
description: string
}
export type Document = WithBasicFields<
{
name: string
description: string
file?: Upload
},
DocumentTranslations
>