enhancementhelp wanted
仓库指标
- Star
- (1,037 star)
- PR 合并指标
- (30 天内没有已合并 PR)
描述
(tested in Typescript)
import { memoize } from 'decko';
class Stores(){
}
class Container {
@memoize
public get stores () {
return new Stores();
}
}
Throws an error:
Invalid property descriptor. Cannot both specify accessors and a value or writable attribute, #<Object>
For reference: https://github.com/darrylhodgins/typescript-memoize does work.