UNPKG

@chevre/domain

Version:

Chevre Domain Library for Node.js

19 lines (18 loc) 829 B
/** * index module */ import type * as COAService from '@motionpicture/coa-service'; import type * as GMOService from '@motionpicture/gmo-service'; import type * as Pecorinoapi from './pecorinoapi'; import { credentials } from './credentials'; import * as errorHandler from './errorHandler'; import * as eventEmitter from './eventEmitter'; import * as factory from './factory'; import * as repository from './repository'; import * as service from './service'; import * as settings from './settings'; export { credentials, errorHandler, eventEmitter, factory, repository, service, settings }; export declare function loadPecorinoapi(): Promise<typeof Pecorinoapi>; export type COA = typeof COAService; export declare function loadCOA(): Promise<typeof COAService>; export declare function loadGMO(): Promise<typeof GMOService>;