Staff report: drop unused StaffFileMeta type (YAGNI)

This commit is contained in:
Joel Brock
2026-06-05 13:10:28 -07:00
parent ff0deed5fb
commit e2f7b1e1ab
-11
View File
@@ -382,14 +382,3 @@ export interface StaffReportPayload {
/** Option-group labels for any select/multiselect/stage field referenced. */ /** Option-group labels for any select/multiselect/stage field referenced. */
options: Record<number, SelectOption[]>; options: Record<number, SelectOption[]>;
} }
/**
* Metadata returned by /api/staff/file?id=&key= when called with the JSON
* Accept header. Not currently used by the UI — the file proxy normally
* streams bytes — but documented here for future use.
*/
export interface StaffFileMeta {
id: number;
fileName: string | null;
mimeType: string | null;
}