import { SharedLinkCanvas } from './SharedLinkCanvas'; import { SharedLinkInstance } from './SharedLinkInstance'; import { SharedLinkOrganization } from './SharedLinkOrganization'; export type SharedLinkCreate = { readonly id: string; readonly type: string; readonly file: Record | null; readonly canvas: SharedLinkCanvas; readonly instance: SharedLinkInstance; readonly organization: SharedLinkOrganization; readonly status: string; readonly url: string; short_url?: string | null; };