mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-22 16:03:00 +08:00
20 lines
457 B
TypeScript
20 lines
457 B
TypeScript
import { IUser } from "./auth";
|
|
import { IAnalysisService } from "./analysis";
|
|
|
|
export interface IReportListing {
|
|
uid?: string;
|
|
report_type?: string;
|
|
created_at?: string;
|
|
created_by_uid?: string;
|
|
created_by?: IUser;
|
|
period_start?: string;
|
|
period_end?: string;
|
|
date_column?: string;
|
|
status?: string;
|
|
analyses?: IAnalysisService[];
|
|
analyses_uids?: number[];
|
|
sample_states?: string[];
|
|
location?: string;
|
|
}
|
|
|
|
|