/** * Framework-agnostic DI token. * * Kontrakty `@echelon-framework/core` nie mogą zależeć od Angulara (bo są też używane * przez node tooling: linter, testkit, schematics). Używamy własnego typu * tokenu, który w pakiecie `runtime` jest mostkowany do `InjectionToken` * Angulara (każdy `EchelonToken` staje się `InjectionToken`). */ export interface EchelonToken { readonly _type: 'EchelonToken'; readonly name: string; readonly _brand?: T; } export declare function createToken(name: string): EchelonToken; //# sourceMappingURL=index.d.ts.map