Coda by Ian Macalinao
    Preparing search index...

    Interface ResolverValueNode<TDependsOn>

    A custom resolver: a named function provided by the consumer that produces a value. May optionally depend on other accounts and arguments resolved at instruction-build time.

    interface ResolverValueNode<
        TDependsOn extends
            ResolverDependency[]
            | undefined = ResolverDependency[] | undefined,
    > {
        dependsOn?: TDependsOn;
        docs?: Docs;
        kind: "resolverValueNode";
        name: CamelCaseString;
    }

    Type Parameters

    Index
    dependsOn?: TDependsOn

    The accounts and arguments the resolver depends on. Used by clients to ensure the dependencies are resolved first.

    docs?: Docs

    Markdown documentation for the resolver.

    kind: "resolverValueNode"

    The name of the resolver function.