UNPKG

@anoki/fse-common

Version:

Common types for FSE

15 lines (14 loc) 398 B
import { Upload } from './upload-file'; import { AddressSchema } from './address'; import { WithBasicFields } from './with-basic-fields'; export type EventTranslations = { name: string; description?: string; }; export type Event = WithBasicFields<{ from: string; to: string; longDescription: string; previewImage?: Upload; address: AddressSchema; }, EventTranslations>;