13 lines
430 B
TypeScript
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 {};
|