UNPKG

@anoki/fse-common

Version:

Common types for FSE

20 lines (17 loc) 392 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 >