16 lines
438 B
TypeScript
16 lines
438 B
TypeScript
|
|
/**
|
||
|
|
* Bun-only entry point — Encrypted SQLite storage + migration utilities.
|
||
|
|
*
|
||
|
|
* Pulls `bun:sqlite`. Do not import from a browser bundle; use
|
||
|
|
* `@shade/storage-encrypted/idb` instead.
|
||
|
|
*/
|
||
|
|
|
||
|
|
export { EncryptedSQLiteStorage } from './storage/encrypted-sqlite.js';
|
||
|
|
export {
|
||
|
|
migrateSqliteToEncrypted,
|
||
|
|
rotateSqliteEncryptionKey,
|
||
|
|
type MigrateOptions,
|
||
|
|
type RotateOptions,
|
||
|
|
type MigrateReport,
|
||
|
|
} from './migrate/migrate-sqlite.js';
|