cecon-interfaces
Version:
Interfaces de Projetos Cecon
9 lines (8 loc) • 418 B
TypeScript
import { EOperator } from '../enums';
import { IFirebaseQuery } from '../interfaces';
export declare class FirebaseQueryEntity implements IFirebaseQuery {
field: string;
operator: EOperator;
value: string | number | boolean | (string | number | boolean)[] | Date | null;
constructor(field: string, operator: EOperator, value: string | number | boolean | (string | number | boolean)[] | Date | null);
}