UNPKG

@aibsweb/faceted-search-biccn

Version:

A generalized faceted search application. Used for BICCN

25 lines (23 loc) 489 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.loadState = exports.eventKeys = void 0; /** * This file contains our enums for the application. * * PUH-LEASE keep anything not global out of here. */ var eventKeys = { sort: 'fs-state:sorting', filter: 'fs-state:filter', paging: 'fs-state:page' }; exports.eventKeys = eventKeys; var loadState = { INITIALIZATION: 0, FETCHING: 1, READY: 2, ERROR: 3 }; exports.loadState = loadState;