ad-custom-lib
Version:
This is an UI custom library based on Adminlte library with purpose for personal use, if you need a full template of Primeng please visit https://github.com/mledour/angular-admin-lte
26 lines (25 loc) • 775 B
TypeScript
import { InjectionToken } from '@angular/core';
import { LayoutState } from './layout.state';
import { LayoutStore } from './layout.store';
/**
* [InjectionToken description]
*/
export declare const LayoutConfigToken: InjectionToken<unknown>;
/**
* [layoutStoreFactory description]
*/
export declare function layoutStoreFactory(layoutConfig: LayoutState): LayoutStore;
/**
* [layoutProviders description]
*/
export declare function layoutProvider(layoutConfig: LayoutState): ({
provide: typeof LayoutStore;
useFactory: typeof layoutStoreFactory;
deps: InjectionToken<unknown>[];
useValue?: undefined;
} | {
provide: InjectionToken<unknown>;
useValue: LayoutState;
useFactory?: undefined;
deps?: undefined;
})[];