From 8a20709ce1c3a0e9f7f95ec0d6725f59f2e47951 Mon Sep 17 00:00:00 2001 From: Wei Zhu Date: Tue, 24 Nov 2020 00:23:03 +0800 Subject: [PATCH] fix: add missing `walk` type in compiler.d.ts (#5696) --- rollup.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rollup.config.js b/rollup.config.js index e9ee666337..81fa24bd9f 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -20,7 +20,7 @@ const ts_plugin = is_publish const external = id => id.startsWith('svelte/'); -fs.writeFileSync(`./compiler.d.ts`, `export { compile, parse, preprocess, VERSION } from './types/compiler/index';`); +fs.writeFileSync(`./compiler.d.ts`, `export { compile, parse, preprocess, walk, VERSION } from './types/compiler/index';`); export default [ /* runtime */