plane/types/state.d.ts
2022-11-19 19:51:26 +05:30

15 lines
312 B
TypeScript

export interface IState {
readonly id: string;
readonly created_at: Date;
readonly updated_at: Date;
name: string;
description: string;
color: string;
readonly slug: string;
readonly created_by: string;
readonly updated_by: string;
project: string;
workspace: string;
sequence: number;
}