Interface SubgraphResponse<T>

interface SubgraphResponse<T> {
    data: { vaults: T[] };
}

Type Parameters

  • T

Properties

Properties

data: { vaults: T[] }