Interface UseDeepSubscriptionResult<LL>

interface UseDeepSubscriptionResult<LL> {
    data?: LL[];
    error?: any;
    loading: boolean;
}

Type Parameters

Properties

Properties

data?: LL[]
error?: any
loading: boolean