UNPKG

@alisdigital/types-library

Version:

TypeScript type definitions for Papilet ecosystem with session soft delete and event management features

9 lines (8 loc) 195 B
export type ColumnType = "Customer" | "Submission"; export interface IColumnModelAttributes<T> { _id: string; status: string; name: string; type: ColumnType; contents: T[]; }