interface function

Solutions on MaxInterview for interface function by the best coders in the world

showing results for - "interface function"
Luna
02 Apr 2018
1interface SearchFunc {
2  (source: string, subString: string): boolean;
3}