WorkspaceGoal
type WorkspaceGoal = {
[key: string]: unknown;
createdAt: string;
creatorUid: string;
deadline: string | null;
description: string | null;
id: string;
isDeleted: boolean;
progress: | {
[key: string]: unknown;
completedItems: number;
totalItems: number;
}
| null;
projectIds: string[];
title: string;
updatedAt: string;
workspaceId: string;
};
Type Declaration
Index Signature
[key: string]: unknown