ng-jax-shared
Version:
Librería de objetos genéricos.
15 lines (14 loc) • 580 B
TypeScript
import { OnInit } from '@angular/core';
import { Router } from '@angular/router';
import { MessageService } from '../../../services/message-service/message.service';
export declare class WinBaseComponent implements OnInit {
protected router: Router;
protected messageService: MessageService;
protected mbValidateUser: boolean;
protected msUrlWelcome: string;
protected mbLog: boolean;
constructor(router: Router, messageService: MessageService);
ngOnInit(): void;
protected fnValidateUser(): void;
protected fnPostInit(): void;
}