UNPKG

@datalayer/core

Version:

[![Datalayer](https://assets.datalayer.tech/datalayer-25.svg)](https://datalayer.io)

21 lines (20 loc) 562 B
import { ISpaceItem } from './SpaceItem'; import { IUser } from './User'; import { IAnyOrganization } from './Organization'; import { IAnySpace } from './Space'; import { IItemType } from './ItemType'; export type IAnyItem = ISpaceItem; export type IItem = { id: string; type: IItemType; name: string; description: string; public: boolean; creationDate: Date; lastUpdateDate?: Date; lastPublicationDate?: Date; owner: IUser; space: Partial<IAnySpace>; organization: Partial<IAnyOrganization>; }; export default IItem;