formatação
This commit is contained in:
parent
e705901982
commit
785588b37e
31 changed files with 178 additions and 167 deletions
|
|
@ -10,19 +10,19 @@ export enum operadores {
|
|||
}
|
||||
|
||||
export type tipoFiltro = {
|
||||
coluna: string;
|
||||
valor: any;
|
||||
operador: keyof typeof operadores | operadores;
|
||||
ou?: boolean;
|
||||
};
|
||||
coluna: string
|
||||
valor: any
|
||||
operador: keyof typeof operadores | operadores
|
||||
ou?: boolean
|
||||
}
|
||||
|
||||
export type interfaceConsulta = {
|
||||
offset?: number;
|
||||
limit?: number;
|
||||
filtros?: tipoFiltro[];
|
||||
ordem?: string;
|
||||
ordemTipo?: "asc" | "desc";
|
||||
colunas?: string[];
|
||||
apenasConsulta?: boolean;
|
||||
apenasContagem?: boolean;
|
||||
};
|
||||
offset?: number
|
||||
limit?: number
|
||||
filtros?: tipoFiltro[]
|
||||
ordem?: string
|
||||
ordemTipo?: "asc" | "desc"
|
||||
colunas?: string[]
|
||||
apenasConsulta?: boolean
|
||||
apenasContagem?: boolean
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue