UNPKG

@controlplane/schema

Version:

Control Plane Corporation Schema

20 lines (19 loc) 404 B
import { Link } from './base'; export interface Task { id?: string; kind?: 'task'; description?: string; created?: Date; lastModified?: Date; targetEmail?: string; creatorLink?: string; type?: string; context?: { [x: string]: any; }; status?: 'pending' | 'complete' | 'canceled'; response?: { [x: string]: any; }; links?: Link[]; }