@neo-one/smart-contract-compiler
Version:
NEO•ONE TypeScript smart contract compiler.
13 lines (11 loc) • 365 B
JavaScript
import { BuiltinInterface } from '../BuiltinInterface';
class PropertyDescriptorInterface extends BuiltinInterface {
constructor() {
super(...arguments);
this.canImplement = true;
}
}
export const add = (builtins) => {
builtins.addInterface('PropertyDescriptor', new PropertyDescriptorInterface());
};
//# sourceMappingURL=index.js.map