1
我有下面的函數返回另一個function
,其中getFirstPhoneNo()
將返回string
。返回函數的函數的返回類型
get phones() {
if (this._patientData && this._patientData.getPatientPrimaryAddress) {
return this._patientData.getFirstPhoneNo();
}
return false;
}
下面是我對interface
patientData
export interface IPatient {
getFirstPhoneNo: Function
}
應該是什麼我的返回類型的手機呢?如果它是一個類型Ipatient
或Function
或Function which returns string
函數返回另一個'函數'在哪裏? – Satpal
@Satpal這是'getFirstPhoneNo()'我想,它返回一個'string' – echonax
你會看到返回getFirstPhoneNo – Shane