UNPKG

@bdelab/roar-firekit

Version:

A library to facilitate Firebase authentication and Cloud Firestore interaction for ROAR apps

22 lines (21 loc) 783 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.UserType = void 0; var UserType; (function (UserType) { UserType["admin"] = "admin"; UserType["educator"] = "educator"; UserType["student"] = "student"; UserType["caregiver"] = "caregiver"; UserType["guest"] = "guest"; UserType["researcher"] = "researcher"; })(UserType = exports.UserType || (exports.UserType = {})); var Operator; (function (Operator) { Operator["LESS_THAN"] = "LESS_THAN"; Operator["GREATER_THAN"] = "GREATER_THAN"; Operator["LESS_THAN_OR_EQUAL"] = "LESS_THAN_OR_EQUAL"; Operator["GREATER_THAN_OR_EQUAL"] = "GREATER_THAN_OR_EQUAL"; Operator["EQUAL"] = "EQUAL"; Operator["NOT_EQUAL"] = "NOT_EQUAL"; })(Operator || (Operator = {}));