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.
1 parent ee96ef6 commit 3bc0930Copy full SHA for 3bc0930
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