19 lines
605 B
TypeScript
19 lines
605 B
TypeScript
import { MakeOakComponent } from 'oak-frontend-base';
|
|
import { EntityDict } from '@oak-app-domain';
|
|
import { AspectDict } from '@project/aspects/AspectDict';
|
|
import { FeatureDict } from '@project/features';
|
|
import { BackendRuntimeContext } from '@project/context/BackendRuntimeContext';
|
|
import { FrontendRuntimeContext } from '@project/context/FrontendRuntimeContext';
|
|
|
|
declare global {
|
|
const OakComponent: MakeOakComponent<
|
|
EntityDict,
|
|
BackendRuntimeContext,
|
|
FrontendRuntimeContext,
|
|
AspectDict,
|
|
FeatureDict
|
|
>;
|
|
const features: FeatureDict;
|
|
}
|
|
export {};
|