Generic type 'Array<T>' requires 1 type argument(s). - Angular2
solution 1:
clients: String[]; // if type cant be determined use 'any[]'
doctors: String[];
solution 2:
clients: Array<String>; // if type cant be determined use '<any>'
doctors: Array<String>;