@baqhub/sdk
Version:
The official JavaScript SDK for the BAQ federated app platform.
11 lines (10 loc) • 394 B
TypeScript
import * as IO from "../../helpers/io.js";
import { RAnyRecord } from "../records/record.js";
declare function recordResponse<K extends RAnyRecord, T extends IO.Any>(knownRecord: K, recordType: T): IO.Type<{
readonly record: IO.TypeOf<T>;
readonly linkedRecords: readonly IO.TypeOf<K>[];
}, any, any>;
export declare const RecordResponse: {
io: typeof recordResponse;
};
export {};