chore: fix type check error (#13366)
ci / test (push) Waiting to run Details
ci / continuous-release (push) Waiting to run Details
size data / upload (push) Waiting to run Details

This commit is contained in:
edison 2025-05-22 11:38:58 +08:00 committed by GitHub
parent 93949e6587
commit 2c6c0794a1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -1324,7 +1324,7 @@ export function mergeSourceMaps(
}, },
original: { original: {
line: m.originalLine, line: m.originalLine,
column: m.originalColumn, column: m.originalColumn!,
}, },
source: m.source, source: m.source,
name: m.name, name: m.name,

View File

@ -49,7 +49,7 @@ test('pipeToWebWritable', async () => {
} }
const { readable, writable } = new TransformStream() const { readable, writable } = new TransformStream()
pipeToWebWritable(createApp(App), {}, writable) pipeToWebWritable(createApp(App), {}, writable as any)
const reader = readable.getReader() const reader = readable.getReader()
const decoder = new TextDecoder() const decoder = new TextDecoder()