skbeta/types/index.d.ts
Christopher Arraya c55ab3d49e initial commit
2024-01-13 20:55:51 -05:00

33 lines
514 B
TypeScript

export type WorkspaceResponse = {
id: string;
name: string;
description: string | null;
icon: string | null;
};
export type ProjectResponse = {
id: string;
name: string;
description: string | null;
stack: string[] | null;
workspace_id: string;
};
export type TaskCard = {
id: string;
name: string;
description?: string | null;
status: string;
};
export type Column = {
id: string;
title: string;
};
export type Feature = {
uid: string;
name: string;
description: string;
};