[fix] make Source type in preprocess private

Is only used internally, shouldn't be exposed. Fixes #6622
pull/6726/head
Simon H 5 years ago committed by GitHub
parent c040f130b7
commit efaea816e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save