[fix] make Source type in preprocess private (#6726)

Is only used internally, shouldn't be exposed. Fixes #6622
pull/7738/head
Simon H 5 years ago committed by GitHub
parent 9c742678db
commit 9b30c8c983

@ -1,5 +1,9 @@
# Svelte changelog # Svelte changelog
## Unreleased
* Hide private preprocess typings ([#6622](https://github.com/sveltejs/svelte/issues/6622))
## 3.42.5 ## 3.42.5
* In `draw` transition, account for `stroke-linecap` in determining length ([#4540](https://github.com/sveltejs/svelte/issues/4540)) * In `draw` transition, account for `stroke-linecap` in determining length ([#4540](https://github.com/sveltejs/svelte/issues/4540))

@ -1,5 +1,8 @@
import { Location } from 'locate-character'; import { Location } from 'locate-character';
/**
* @internal
*/
export interface Source { export interface Source {
source: string; source: string;
get_location: (search: number) => Location; get_location: (search: number) => Location;

Loading…
Cancel
Save