We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 650b41c + 3bc0930 commit 93ea359Copy full SHA for 93ea359
index.d.ts
@@ -154,10 +154,13 @@ export interface FunctionDefinition extends BaseASTNode {
154
modifiers: ModifierInvocation[];
155
stateMutability?: 'pure' | 'constant' | 'payable' | 'view'
156
visibility: 'default' | 'external' | 'internal' | 'public' | 'private';
157
- isConstructor: boolean;
158
returnParameters?: VariableDeclaration[];
159
body?: Block;
160
override: null | UserDefinedTypeName[];
+ isConstructor: boolean;
161
+ isReceiveEther: boolean;
162
+ isFallback: boolean;
163
+ isVirtual: boolean;
164
}
165
export interface EventDefinition extends BaseASTNode {
166
type: 'EventDefinition';
0 commit comments