mirror of
https://github.com/SkalaraAI/skbeta.git
synced 2025-04-09 15:00:18 -04:00
33 lines
514 B
TypeScript
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;
|
|
};
|