Type Alias SubscriptionMethodsType
SubscriptionMethodsType: {
complete?: () => void;
error?: (err: any) => void;
next: (value: any) => void | Promise<void>;
}
Type declaration
Optional
complete?: () => void
Optional
error?: (err: any) => void
next: (value: any) => void | Promise<void>