@becomes/cms-cloud-client
Version:
SDK for accessing BCMS Cloud API
12 lines (11 loc) • 436 B
TypeScript
import type { FSDBEntity } from '@becomes/purple-cheetah-mod-fsdb/types';
import type { InvitationError } from './error';
import type { InvitationFrom } from './from';
import type { InvitationInstance } from './instance';
import type { InvitationTo } from './to';
export interface InvitationProtected extends FSDBEntity {
instances: InvitationInstance[];
from: InvitationFrom;
to: InvitationTo;
err?: InvitationError;
}