mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 00:12:54 +08:00
19 lines
455 B
TypeScript
19 lines
455 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;
|
||
|
}
|