12 lines
471 B
TypeScript
12 lines
471 B
TypeScript
import { FeatureDict } from '@project/features';
|
|
import { BasicFeatures } from 'oak-frontend-base/es/features';
|
|
import { EntityDict } from '@project/oak-app-domain';
|
|
|
|
/**
|
|
* Initialize your features when app loads.
|
|
* If you use the oak-general-business, then remember to call the initial function in "oak-general-business/es/features/index".
|
|
* @param features
|
|
*/
|
|
export default async function initialize(features: FeatureDict & BasicFeatures<EntityDict>) {
|
|
|
|
} |