mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
15 lines
312 B
TypeScript
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;
|
||
|
}
|