@neo-one/smart-contract-compiler
Version:
NEO•ONE TypeScript smart contract compiler.
16 lines (14 loc) • 481 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.add = void 0;
const BuiltinInterface_1 = require("../BuiltinInterface");
class PropertyDescriptorInterface extends BuiltinInterface_1.BuiltinInterface {
constructor() {
super(...arguments);
this.canImplement = true;
}
}
exports.add = (builtins) => {
builtins.addInterface('PropertyDescriptor', new PropertyDescriptorInterface());
};
//# sourceMappingURL=index.js.map