oak-pay-business/es/features/Console.d.ts

13 lines
430 B
TypeScript

import { EntityDict } from '../oak-app-domain';
import { Feature } from 'oak-frontend-base';
import { Cache } from 'oak-frontend-base/es/features/cache';
type IMode = 'systemProvider' | 'store';
export default class Console extends Feature {
private cache;
constructor(cache: Cache<EntityDict>);
getMode(allowUninitialized?: boolean): IMode;
initialize(): Promise<void>;
destroy(): Promise<void>;
}
export {};