PodmanEngine.ts overview
Podman engine
Since v1.0.0
Exports Grouped by Category
Layers
layerAgnostic
Signature
declare const layerAgnostic: (
connectionOptions: MobyConnection.HttpConnectionOptionsTagged | MobyConnection.HttpsConnectionOptionsTagged
) => PodmanLayerWithoutHttpClientOrWebsocketConstructor
Since v1.0.0
layerBun
Signature
declare const layerBun: (connectionOptions: MobyConnection.MobyConnectionOptions) => PodmanLayer
Since v1.0.0
layerDeno
Signature
declare const layerDeno: (connectionOptions: MobyConnection.MobyConnectionOptions) => PodmanLayer
Since v1.0.0
layerFetch
Signature
declare const layerFetch: (
connectionOptions: MobyConnection.HttpConnectionOptionsTagged | MobyConnection.HttpsConnectionOptionsTagged
) => PodmanLayer
Since v1.0.0
layerNodeJS
Signature
declare const layerNodeJS: (connectionOptions: MobyConnection.MobyConnectionOptions) => PodmanLayer
Since v1.0.0
layerUndici
Signature
declare const layerUndici: (connectionOptions: MobyConnection.MobyConnectionOptions) => PodmanLayer
Since v1.0.0
layerWeb
Signature
declare const layerWeb: (
connectionOptions: MobyConnection.HttpConnectionOptionsTagged | MobyConnection.HttpsConnectionOptionsTagged
) => PodmanLayer
Since v1.0.0
layerWithoutHttpCLient
Signature
declare const layerWithoutHttpCLient: PodmanLayerWithoutHttpClientOrWebsocketConstructor
Since v1.0.0
Types
PodmanLayer (type alias)
Signature
type PodmanLayer = Layer.Layer<
| MobyEndpoints.Containers
| MobyEndpoints.Execs
| MobyEndpoints.Images
| MobyEndpoints.Networks
| MobyEndpoints.Secrets
| MobyEndpoints.Systems
| MobyEndpoints.Volumes,
never,
never
>
Since v1.0.0
PodmanLayerWithoutHttpClientOrWebsocketConstructor (type alias)
Signature
type PodmanLayerWithoutHttpClientOrWebsocketConstructor = Layer.Layer<
Layer.Layer.Success<PodmanLayer>,
Layer.Layer.Error<PodmanLayer>,
Layer.Layer.Context<PodmanLayer> | HttpClient.HttpClient | Socket.WebSocketConstructor
>
Since v1.0.0