@any-listen/extension-kit 0.1.11 → 0.1.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/app/api.d.ts +4 -2
package/package.json
CHANGED
package/types/app/api.d.ts
CHANGED
|
@@ -1150,11 +1150,13 @@ declare global {
|
|
|
1150
1150
|
interface Zlib {
|
|
1151
1151
|
deflate: <T extends 'base64' | 'binary' = 'binary'>(
|
|
1152
1152
|
data: Uint8Array | string,
|
|
1153
|
-
encoding?: T
|
|
1153
|
+
encoding?: T,
|
|
1154
|
+
options?: { finishFlush?: 'Z_FINISH' | 'Z_SYNC_FLUSH' }
|
|
1154
1155
|
) => Promise<T extends 'base64' ? string : Uint8Array>
|
|
1155
1156
|
inflate: <T extends 'utf-8' | 'binary' = 'binary'>(
|
|
1156
1157
|
data: Uint8Array | string,
|
|
1157
|
-
encoding?: T
|
|
1158
|
+
encoding?: T,
|
|
1159
|
+
options?: { finishFlush?: 'Z_FINISH' | 'Z_SYNC_FLUSH' }
|
|
1158
1160
|
) => Promise<T extends 'utf-8' ? string : Uint8Array>
|
|
1159
1161
|
}
|
|
1160
1162
|
interface Configuration {
|