@levo-so/client
Version:
<img alt="Levo" src="https://static.levocdn.com/png/Levo-Logo.png" width="50" height="50">
10 lines (9 loc) • 361 B
TypeScript
import type { LemaCollection } from '../../types/lema';
import type { LemaFieldRecord } from './generate-interface';
export declare const fetchSchema: ({ endpoint, workspace }: {
endpoint: string;
workspace: string;
}) => Promise<{
collections: Record<string, Omit<LemaCollection, "fields">>;
fields: Record<string, LemaFieldRecord>;
} | null>;