Skip to content

Commit a040f14

Browse files
renovate[bot]max-nextcloud
authored andcommitted
chore(deps): update dependency typescript to ^5.7.2
Signed-off-by: Max <max@nextcloud.com>
1 parent 8a03577 commit a040f14

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
"raw-loader": "^4.0.2",
141141
"rollup-plugin-webpack-stats": "^1.1.1",
142142
"ts-jest": "^29.2.5",
143-
"typescript": "^5.6.3",
143+
"typescript": "^5.7.2",
144144
"vite": "^5.4.11",
145145
"vite-plugin-commonjs": "^0.10.4",
146146
"vue-demi": "^0.14.10",

src/helpers/base64.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ export function encodeArrayBuffer(data: ArrayBuffer): string {
2626
*
2727
* @param {string} encoded - base64 encoded string to decode
2828
*/
29-
export function decodeArrayBuffer(encoded: string): ArrayBuffer {
29+
export function decodeArrayBuffer(encoded: string): Uint8Array {
3030
return fromBase64(encoded)
3131
}

src/services/Outbox.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default class Outbox {
1616
#syncUpdate = ''
1717
#syncQuery = ''
1818

19-
storeStep(step: Uint8Array) {
19+
storeStep(step: ArrayBuffer) {
2020
const encoded = encodeArrayBuffer(step)
2121
if (encoded < 'AAA' || encoded > 'Ag') {
2222
logger.warn('Unexpected step type:', { step, encoded })

0 commit comments

Comments
 (0)