ngx-route-manager
Version:
A route management library for Angular
17 lines (16 loc) • 469 B
TypeScript
export declare class NgxParam {
/**
* Name of the param
*/
private readonly _name;
get name(): string;
/**
* Returns the current snapshoot of the value in the url route
*/
readonly snapshotValue: import("@angular/core").Signal<string>;
/**
* Listens for change on param in the route
*/
readonly listenForValue: import("@angular/core").Signal<import("rxjs").Observable<string>>;
constructor(name: string);
}