12 lines
284 B
TypeScript
12 lines
284 B
TypeScript
|
|
/**
|
||
|
|
* Node-only entry point — Encrypted Postgres storage.
|
||
|
|
*
|
||
|
|
* Pulls `postgres`. Do not import from a browser bundle; use
|
||
|
|
* `@shade/storage-encrypted/idb` instead.
|
||
|
|
*/
|
||
|
|
|
||
|
|
export {
|
||
|
|
EncryptedPostgresStorage,
|
||
|
|
ensureEncryptedClientTables,
|
||
|
|
} from './storage/encrypted-postgres.js';
|