UNPKG

@ngworker/router-component-store

Version:

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

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