Files
fotospiel-app/resources/js/admin/mobile/lib/taskSummary.ts

21 lines
403 B
TypeScript

export type TaskSummary = {
assigned: number;
library: number;
collections: number;
emotions: number;
};
export function buildTaskSummary(params: {
assigned: number;
library: number;
collections: number;
emotions: number;
}): TaskSummary {
return {
assigned: params.assigned,
library: params.library,
collections: params.collections,
emotions: params.emotions,
};
}