msg91-webrtc-call
Version:
**msg91-webrtc-call** is a lightweight JavaScript SDK that enables you to easily add peer-to-peer WebRTC audio/video calling functionality to your web applications using the MSG91 infrastructure.
16 lines (15 loc) • 377 B
TypeScript
import { z } from 'zod';
export declare const UserSchema: z.ZodObject<{
id: z.ZodString;
name: z.ZodString;
picture: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
name: string;
id: string;
picture?: string | undefined;
}, {
name: string;
id: string;
picture?: string | undefined;
}>;
export type User = z.infer<typeof UserSchema>;