Low-risk subset only — each verified to have zero external references (tsc + eslint green); API clients, stores, icons and constants left untouched. - libs/util.ts: unexport `is` (still used internally by isNumber) - components/tree-select/libs/util.ts: drop unused recursive `findLabel` - app/person/workload/config.ts: drop unused `dimensionOpts` - components/login/libs/session-cache.ts: drop unused `getCachedSession` - components/setting/PageSurface.tsx: drop 3 unused layout components (SettingTableViewport, SettingSectionHeader, SettingFilterStack) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
20 lines
370 B
TypeScript
20 lines
370 B
TypeScript
export type DimensionType =
|
|
| "all"
|
|
| "order_by_user_name"
|
|
| "order_by_group_name"
|
|
| "order_by_project_name"
|
|
| "order_by_project_type"
|
|
|
|
export type MetricColumn = {
|
|
key: string
|
|
title: string
|
|
}
|
|
|
|
export type GroupedData = {
|
|
all: any[]
|
|
order_by_group_name: any[]
|
|
order_by_project_name: any[]
|
|
order_by_project_type: any[]
|
|
order_by_user_name: any[]
|
|
}
|