Type alias ContractMethodNames<C>

ContractMethodNames<C>: keyof {
    [K in keyof C["callStatic"] as string extends K
        ? never
        : K]: true
}

Type Parameters

Generated using TypeDoc