@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) • 322 B
TypeScript
import { z } from "zod";
export declare const ZSessionId: z.ZodObject<{
type: z.ZodLiteral<"sessionId">;
sessionId: z.ZodString;
}, "strip", z.ZodTypeAny, {
type?: "sessionId";
sessionId?: string;
}, {
type?: "sessionId";
sessionId?: string;
}>;
export type SessionId = z.infer<typeof ZSessionId>;