UNPKG

solidity-ast

Version:
11 lines 454 B
import type { StructuredDocumentation } from '../types'; export interface NatSpecTag { tag: string; args: string; } export interface NodeWithDocumentation { documentation?: string | StructuredDocumentation | null; } export declare function parseNatSpec(node: NodeWithDocumentation): NatSpecTag[]; export declare function execall(re: RegExp, text: string): Generator<RegExpExecArray, void, unknown>; //# sourceMappingURL=parse-natspec.d.ts.map