UNPKG

cecon-interfaces

Version:
9 lines (8 loc) 418 B
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); }