scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
12 lines (11 loc) • 326 B
TypeScript
export interface IQuery {
limit: string;
startDate?: string;
endDate?: string;
status?: string;
sandbox?: 'true' | 'false' | 'undefined' | 'null' | '';
filterBy?: 'startDate' | 'endDate' | 'none';
query?: string;
lastDocId?: string | undefined | null;
apikey?: string | undefined | null;
}