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