SqliteClient
Constructor
Layers
Signature
declare function layer(config: SqliteClientConfig): Layer<any, ConfigError>;layerConfig
Added in v1.0.0
Source
Signature
declare function layerConfig(config: Wrap<SqliteClientConfig>): Layer<any, ConfigError>;Models
SqliteClient interface
Added in v1.0.0
Source
Signature
interface SqliteClient extends unknown {
readonly [TypeId]: typeof TypeId;
readonly config: SqliteClientConfig;
readonly updateValues: never;
}SqliteClientConfig interface
Added in v1.0.0
Source
Signature
interface SqliteClientConfig {
readonly db: SqlStorage;
readonly spanAttributes?: Record<string, unknown>;
readonly transformQueryNames?: (str: string) => string;
readonly transformResultNames?: (str: string) => string;
}