甚至有可能在TypeScript中使用我的自定义类类型来提示构造函数参数吗?
对于此代码,我收到上述错误:
// ProductCategoryDTO.ts
'use strict';
import ProductCategory from './ProductCategory';
export default class ProductCategoryDTO {
constructor(ProductCategory: category) {
// do somenthing
}
}
// ProductCategory.ts
'use strict'
export default class ProductCategory {
}
然后我得到这个错误:
TSError: ⨯ Unable to compile TypeScript:
src/domain/services/ProductCategoryDTO.ts:7:31 - error TS2304: Cannot find name 'category'.
7 constructor(ProductCategory: category) {
此代码获取错误有什么问题?