We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
encryptSchema
newClient
1 parent 50ac9f5 commit 057e48dCopy full SHA for 057e48d
src/index.cts
@@ -8,10 +8,10 @@ declare const sym: unique symbol
8
// Poor man's opaque type.
9
export type Client = { readonly [sym]: unknown }
10
11
-// Use this declaration to assign types to the jseql's exports,
12
-// which otherwise by default are `any`.
+// Use this declaration to assign types to the protect-ffi's exports,
+// which otherwise default to `any`.
13
declare module './load.cjs' {
14
- function newClient(encryptSchema?: string): Promise<Client>
+ function newClient(encryptSchema: string): Promise<Client>
15
function encrypt(
16
client: Client,
17
plaintext: EncryptPayload,
0 commit comments