mirror of https://github.com/vuejs/core.git
chore: fix type check error (#13366)
This commit is contained in:
parent
93949e6587
commit
2c6c0794a1
|
@ -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,
|
||||||
|
|
|
@ -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()
|
||||||
|
|
Loading…
Reference in New Issue