Type Aliases

The following type aliases are available globally.

  • StdDelayedPromise is an alias for a DelayedPromise whose error type is Swift.Error.

    Declaration

    Swift

    public typealias StdDelayedPromise<Value> = DelayedPromise<Value, Swift.Error>
  • StdPromise is an alias for a Promise whose error type is Swift.Error.

    Declaration

    Swift

    public typealias StdPromise<Value> = Promise<Value, Swift.Error>