@arcware-cloud/pixelstreaming-websdk
Version:
WebSDK for easy implementation of pixel streaming with Arcware Cloud Services. Heavily based on the '@epicgames-ps' library.
13 lines (12 loc) • 319 B
TypeScript
import { z } from "zod";
export declare const ZVersion: z.ZodObject<{
type: z.ZodLiteral<"version">;
version: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
type?: "version";
version?: string;
}, {
type?: "version";
version?: string;
}>;
export type Version = z.infer<typeof ZVersion>;