Interface StreamRefetchManagerResponse

interface StreamRefetchManagerResponse {
    user?: {
        __typename: string;
        id: string;
        stream: null | {
            __typename: string;
            id: string;
            isEncrypted: boolean;
        };
    };
}

Properties

Properties

user?: {
    __typename: string;
    id: string;
    stream: null | {
        __typename: string;
        id: string;
        isEncrypted: boolean;
    };
}

Type declaration

  • __typename: string
  • id: string
  • stream: null | {
        __typename: string;
        id: string;
        isEncrypted: boolean;
    }