forked from github/plane
a048e513b7
* chore: spreadsheet view context * chore: spreadsheet context provider * chore: spreadsheet view context * chore: display filters and properties added in workspace view and code refactor * fix: build error fix * chore: set sub-issue display option to false for global views --------- Co-authored-by: gurusainath <gurusainath007@gmail.com>
27 lines
557 B
TypeScript
27 lines
557 B
TypeScript
export interface IView {
|
|
id: string;
|
|
access: string;
|
|
created_at: Date;
|
|
updated_at: Date;
|
|
is_favorite: boolean;
|
|
created_by: string;
|
|
updated_by: string;
|
|
name: string;
|
|
description: string;
|
|
query: IQuery;
|
|
query_data: IQuery;
|
|
project: string;
|
|
workspace: string;
|
|
}
|
|
|
|
export interface IQuery {
|
|
assignees: string[] | null;
|
|
created_by: string[] | null;
|
|
labels: string[] | null;
|
|
priority: string[] | null;
|
|
state: string[] | null;
|
|
start_date: string[] | null;
|
|
target_date: string[] | null;
|
|
type: "active" | "backlog" | null;
|
|
}
|