From efaea816e8463c463616f7362e388f857ea5356d Mon Sep 17 00:00:00 2001 From: Simon H <5968653+dummdidumm@users.noreply.github.com> Date: Mon, 13 Sep 2021 11:15:32 +0200 Subject: [PATCH] [fix] make Source type in preprocess private Is only used internally, shouldn't be exposed. Fixes #6622 --- src/compiler/preprocess/types.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/compiler/preprocess/types.ts b/src/compiler/preprocess/types.ts index 94007371cc..4ac441b5e6 100644 --- a/src/compiler/preprocess/types.ts +++ b/src/compiler/preprocess/types.ts @@ -1,5 +1,8 @@ import { Location } from 'locate-character'; +/** + * @internal + */ export interface Source { source: string; get_location: (search: number) => Location;