@baqhub/sdk
Version:
The official JavaScript SDK for the BAQ federated app platform.
17 lines (16 loc) • 619 B
TypeScript
import * as IO from "../../helpers/io.js";
declare const RVersionLinkRaw: IO.IntersectionC<[IO.Type<{
readonly entity: string;
readonly recordId: string;
readonly versionHash: string;
}, any, any>, IO.Type<{
readonly originalEntity?: string | undefined;
}, any, any>]>;
export interface VersionLink extends IO.TypeOf<typeof RVersionLinkRaw> {
}
export declare const RVersionLink: IO.Type<VersionLink, any, unknown>;
declare function buildVersionLink(entity: string, recordId: string, versionHash: string): VersionLink;
export declare const VersionLink: {
new: typeof buildVersionLink;
};
export {};