(options: {
readonly scheme: string
})
| 124 | * @since 4.0.0 |
| 125 | */ |
| 126 | export const http = (options: { |
| 127 | readonly scheme: string |
| 128 | }): Http => |
| 129 | Object.assign(Object.create(Proto), { |
| 130 | _tag: "Http", |
| 131 | scheme: options.scheme, |
| 132 | schemeLength: options.scheme.length, |
| 133 | annotations: Context.empty() |
| 134 | }) |
| 135 | |
| 136 | /** |
| 137 | * Creates a Bearer token security scheme. |
no test coverage detected