UNPKG

@neurosity/sdk

Version:
24 lines (23 loc) 377 B
/** * @hidden */ export interface PendingSubscription { metric: string; labels: string[]; atomic: boolean; serverType?: string; } /** * @hidden */ export interface Subscription extends PendingSubscription { id: string; clientId: string; serverType: string; } /** * @hidden */ export interface Subscriptions { [id: string]: Subscription; }