mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-21 07:22:53 +08:00
18 lines
455 B
TypeScript
18 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;
|
|
}
|