PATH:
usr
/
local
/
lib
/
node_modules
/
ghost-cli
/
node_modules
/
rxjs
/
src
/
internal
/
util
export interface UnsubscriptionError extends Error { readonly errors: any[]; } export interface UnsubscriptionErrorCtor { new(errors: any[]): UnsubscriptionError; } const UnsubscriptionErrorImpl = (() => { function UnsubscriptionErrorImpl(this: any, errors: any[]) { Error.call(this); this.message = errors ? `${errors.length} errors occurred during unsubscription: ${errors.map((err, i) => `${i + 1}) ${err.toString()}`).join('\n ')}` : ''; this.name = 'UnsubscriptionError'; this.errors = errors; return this; } UnsubscriptionErrorImpl.prototype = Object.create(Error.prototype); return UnsubscriptionErrorImpl; })(); /** * An error thrown when one or more errors have occurred during the * `unsubscribe` of a {@link Subscription}. */ export const UnsubscriptionError: UnsubscriptionErrorCtor = UnsubscriptionErrorImpl as any;
[-] subscribeToResult.ts
[edit]
[-] isInteropObservable.ts
[edit]
[-] isArrayLike.ts
[edit]
[-] EmptyError.ts
[edit]
[-] subscribeToPromise.ts
[edit]
[-] isScheduler.ts
[edit]
[-] root.ts
[edit]
[+]
..
[-] applyMixins.ts
[edit]
[-] isObservable.ts
[edit]
[-] tryCatch.ts
[edit]
[-] subscribeToIterable.ts
[edit]
[-] subscribeToArray.ts
[edit]
[-] isPromise.ts
[edit]
[-] pipe.ts
[edit]
[-] identity.ts
[edit]
[-] ArgumentOutOfRangeError.ts
[edit]
[-] ObjectUnsubscribedError.ts
[edit]
[-] isIterable.ts
[edit]
[-] UnsubscriptionError.ts
[edit]
[-] not.ts
[edit]
[-] isArray.ts
[edit]
[-] isObject.ts
[edit]
[-] isNumeric.ts
[edit]
[-] isFunction.ts
[edit]
[-] noop.ts
[edit]
[-] canReportError.ts
[edit]
[-] errorObject.ts
[edit]
[-] TimeoutError.ts
[edit]
[-] isDate.ts
[edit]
[-] subscribeToObservable.ts
[edit]
[-] subscribeTo.ts
[edit]
[-] hostReportError.ts
[edit]
[-] toSubscriber.ts
[edit]
[-] Immediate.ts
[edit]