Skip to content

SqlRunnerStorage

3 exports Added in v1.0.0 Source

Constructors

make

Added in v1.0.0 Source

Signature

declare const make: (
  ...args: [
    options: {
      readonly prefix?: string;
    },
  ]
) => Effect;

Layers

layer

Added in v1.0.0 Source

Signature

declare const layer: Layer.Layer<
  RunnerStorage.RunnerStorage,
  SqlError,
  SqlClient.SqlClient | ShardingConfig.ShardingConfig
>;

layerWith

Added in v1.0.0 Source

Signature

declare function layerWith(options: {
  readonly prefix?: string;
}): Layer<RunnerStorage, SqlError, any>;