15 lines
501 B
TypeScript
15 lines
501 B
TypeScript
|
import { InjectionToken, StaticProvider } from '@angular/core';
|
||
|
/**
|
||
|
* A token that holds custom context of the output handlers
|
||
|
*
|
||
|
* @public
|
||
|
*/
|
||
|
export declare const IoEventContextToken: InjectionToken<unknown>;
|
||
|
/**
|
||
|
* A token that holds provider for custom context of the output handlers
|
||
|
* which should be provided using {@link IoEventContextToken} token
|
||
|
*
|
||
|
* @public
|
||
|
*/
|
||
|
export declare const IoEventContextProviderToken: InjectionToken<StaticProvider>;
|
||
|
//# sourceMappingURL=event-context.d.ts.map
|