@effectai/sdk
Version:
Effect Network Javscript/Typescript SDK (for [https://effect.network](https://effect.network))
9 lines (8 loc) • 333 B
TypeScript
import type { ISchemaRow } from "atomicassets/build/API/Rpc/RpcCache";
import type { Client } from "../../client";
export type getSchemaArgs = {
client: Client;
collectionName: string;
schemaName: string;
};
export declare const getSchema: ({ client, collectionName, schemaName, }: getSchemaArgs) => Promise<ISchemaRow>;