mirror of
https://github.com/SkalaraAI/beta.git
synced 2025-04-09 15:00:20 -04:00
15 lines
218 B
TypeScript
15 lines
218 B
TypeScript
export async function updateTaskStatusAction({
|
|
id,
|
|
status,
|
|
}: {
|
|
id: number;
|
|
status: string;
|
|
}) {}
|
|
export async function updateTaskPriorityAction({
|
|
id,
|
|
priority,
|
|
}: {
|
|
id: number;
|
|
priority: string;
|
|
}) {}
|