@openzeppelin/upgradeability-transpiler
Version:
Transpiles Solidity contracts to updgradable versions compatible with OpenZeppelin SDK.
25 lines (24 loc) • 580 B
TypeScript
/**
* Schema of an Abstract Syntax Tree Node.
* This schema only describes the properies that are mandatory across all nodes.
* Additional attrs can exist depending on the entity the Node represents.
*/
declare const _default: {
type: string;
properties: {
nodeType: {
type: string;
minLength: number;
};
};
patternProperties: {
'^.+$': {
oneOf: {
type: string;
}[];
};
};
required: string[];
additionalProperties: boolean;
};
export default _default;