@ngworker/router-component-store
Version:
A strictly typed lightweight alternative to NgRx Router Store (@ngrx/router-store) and ActivatedRoute
8 lines (7 loc) • 306 B
TypeScript
import { Params } from '@angular/router';
import { StrictNoAny } from './util-types/strict-no-any';
/**
* @remarks We use this type to ensure compatibility with {@link Params}.
* @internal
*/
export type InternalStrictQueryParams = Readonly<StrictNoAny<Params, string | readonly string[] | undefined>>;