Type Alias MapPackageRealtimeAuth

MapPackageRealtimeAuth: {
    kind: "none";
} | {
    kind: "cookie";
    withCredentials?: boolean;
} | {
    kind: "query-token";
    parameterName?: string;
    token: string;
}