paths overview
Absolute paths to bundled libsqlite3 for supported platforms.
Example
import { linux_x86_64 } from "@effect-native/libsqlite/paths"
console.log(linux_x86_64.endsWith("libsqlite3.so")) // true
Added in v0.0.0
Table of contents
Paths
darwin_aarch64
Absolute paths to bundled libsqlite3 for supported platforms.
Signature
export declare const darwin_aarch64: string
Example
import { linux_x86_64 } from "@effect-native/libsqlite/paths"
console.log(linux_x86_64.endsWith("libsqlite3.so")) // true
Added in v0.0.0
darwin_x86_64
Absolute path for macOS Intel.
Signature
export declare const darwin_x86_64: string
Example
import { darwin_x86_64 } from "@effect-native/libsqlite/paths"
console.log(darwin_x86_64.endsWith("libsqlite3.dylib")) // true
Added in v0.0.0
linux_aarch64
Absolute path for Linux aarch64 (glibc).
Signature
export declare const linux_aarch64: string
Example
import { linux_aarch64 } from "@effect-native/libsqlite/paths"
console.log(linux_aarch64.endsWith("libsqlite3.so")) // true
Added in v0.0.0
linux_x86_64
Absolute path for Linux x86_64 (glibc).
Signature
export declare const linux_x86_64: string
Example
import { linux_x86_64 } from "@effect-native/libsqlite/paths"
console.log(linux_x86_64.endsWith("libsqlite3.so")) // true
Added in v0.0.0