@lfai/egeria-js-commons
Version:
Common module for storing static data such as key value objects, SVGs, icon mappings, API urls.
9 lines (8 loc) • 484 B
TypeScript
import { fetchRawData, fetchTypes } from './assets';
import { glossaries } from './data/glossaries';
import { lineage } from './data/lineage';
import { types } from './data/types';
import { API_ASSETS_SEARCH_PATH, API_ASSETS_TYPES_PATH, API_LOGIN_PATH } from './routes';
declare const apiUrl: () => string;
declare function goHome(): void;
export { API_ASSETS_SEARCH_PATH, API_ASSETS_TYPES_PATH, API_LOGIN_PATH, apiUrl, fetchRawData, fetchTypes, glossaries, goHome, lineage, types };