UNPKG

@ngworker/router-component-store

Version:

A strictly typed lightweight alternative to NgRx Router Store (@ngrx/router-store) and ActivatedRoute

8 lines (7 loc) 220 B
/** * Strict route {@link Params} with read-only members where the `any` member * type is converted to `string | undefined`. */ export interface StrictRouteParams { readonly [param: string]: string | undefined; }