plane/types/state.d.ts

15 lines
312 B
TypeScript
Raw Normal View History

2022-11-19 14:21:26 +00:00
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;
}