Slot
export type SlotCollectionType = 'Identical' | 'Unique' | 'Both';
export type Slot = {
slotId: string;
slotName: string;
slotImage: string;
description: string;
appId: string;
acceptingCollections: boolean;
isPublic: boolean;
collectionTypes: SlotCollectionType;
createdAt: number;
updatedAt: number;
collections: string[];
expressions: string[];
}
export type SlotWithExpressions = Omit<Slot, 'expressions'> & {
expressions: Expression[];
}
Last updated