Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 | 1x 25x | import type { Navigation } from '@angular/router';
import type { ActionCodeState } from './actions.component';
/**
* Get the ActionCodeState from the Navigation extras state, if we can.
*/
export const getState = (maybeNavigation: Navigation | null): Partial<ActionCodeState> =>
maybeNavigation?.extras.state ?? {};
|