UNPKG

@vicoders/angular

Version:

- [Vicoders Angular Common Module](#vicoders-angular-common-module) - [Install](#install) - [How to use](#how-to-use) - [Pipes](#pipes) - [hasItem](#hasitem) - [isArray](#isarray) - [length](#length) - [orderBy](#orderby)

15 lines (14 loc) 474 B
import { OnDestroy } from '@angular/core'; import { OnInit } from '@angular/core'; import { Router, ActivatedRoute } from '@angular/router'; export declare class SearchFormComponent implements OnInit, OnDestroy { private route; private activatedRoute; navigationSubscription: any; keyword: string; placeHolder: String; constructor(route: Router, activatedRoute: ActivatedRoute); ngOnInit(): void; ngOnDestroy(): void; onSubmit(): void; }