Type Alias SubscriptionMethodsType

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

Type declaration

  • Optionalcomplete?: () => void
  • Optionalerror?: (err: any) => void
  • next: (value: any) => void | Promise<void>