UNPKG

416 BTypeScriptView Raw
1import { ActivatedRoute, Params } from '@angular/router';
2import { NacoService } from '../../domains/services/naco.service';
3import { Storage } from '@ubud/storage';
4export declare class AuthPage {
5 private route;
6 private naco;
7 private storage;
8 message: string;
9 constructor(route: ActivatedRoute, naco: NacoService, storage: Storage);
10 handle(params: Params): void;
11 private authenticate;
12}