UNPKG

@lucasferreiralsf/angular-frontend-library

Version:

This is a set of custom angular components to easy the development of any Subway frontend project.

15 lines (14 loc) 422 B
import { OnInit } from '@angular/core'; import { MatDialog } from '@angular/material'; export declare class DialogService implements OnInit { dialog: MatDialog; animal: string; name: string; widthDialog: string; tabs: string[]; component: any; constructor(dialog: MatDialog); ngOnInit(): void; getTabs(): string[]; openDialog(dialogComponent: any, data: any): void; }