UNPKG

@neo-one/smart-contract-compiler-esnext-esm

Version:

NEO•ONE TypeScript smart contract compiler.

13 lines (11 loc) 380 B
import { BuiltinInterface } from '../BuiltinInterface'; class TypedPropertyDescriptorInterface extends BuiltinInterface { constructor() { super(...arguments); this.canImplement = true; } } export const add = (builtins) => { builtins.addInterface('TypedPropertyDescriptor', new TypedPropertyDescriptorInterface()); }; //# sourceMappingURL=index.js.map