Options
All
  • Public
  • Public/Protected
  • All
Menu

Namespace <internal>

Index

Type Aliases

Partial<T>: { [ P in keyof T]?: T[P] }

Make all properties in T optional

Type Parameters

  • T

PromiseConstructorLike: (new <T>(executor: ((resolve: ((value: T | PromiseLike<T>) => void), reject: ((reason?: any) => void)) => void)) => PromiseLike<T>)

Type declaration

    • new <T>(executor: ((resolve: ((value: T | PromiseLike<T>) => void), reject: ((reason?: any) => void)) => void)): PromiseLike<T>
    • Type Parameters

      • T

      Parameters

      • executor: ((resolve: ((value: T | PromiseLike<T>) => void), reject: ((reason?: any) => void)) => void)
          • (resolve: ((value: T | PromiseLike<T>) => void), reject: ((reason?: any) => void)): void
          • Parameters

            • resolve: ((value: T | PromiseLike<T>) => void)
            • reject: ((reason?: any) => void)
                • (reason?: any): void
                • Parameters

                  • Optional reason: any

                  Returns void

            Returns void

      Returns PromiseLike<T>

TeardownLogic: Subscription | Unsubscribable | (() => void) | void

Generated using TypeDoc