Skip to main content

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
NameType
createdAtstring
creatorUidstring
deadlinestring | null
descriptionstring | null
idstring
isDeletedboolean
progress| { [key: string]: unknown; completedItems: number; totalItems: number; } | null
projectIdsstring[]
titlestring
updatedAtstring
workspaceIdstring