import { Constructor } from "../../../domain/entities/constructor"; import { Methods } from "../../../domain/entities/methods/methods"; import { OBJECT_TYPE } from "../../../domain/interface"; export declare enum CRUD_METHODS { ADD = "add", SET = "set", REMOVE = "remove", GET_ALL = "getAll", GET_ONE = "getOne" } export declare class FirebaseService { readonly name: string; readonly type = OBJECT_TYPE.CLASS; readonly decorators: string[]; private clientVar; readonly constr: Constructor; readonly methods: Methods; constructor(name: string, dtoType: string); }