Cosmetic: whitespace

This commit is contained in:
Tony Garnock-Jones 2024-05-29 11:49:00 +02:00
parent 248d22a3ef
commit 9c85ac5a85
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ export function stripShebang(items: Items): Items {
return items;
}
export type ModuleType ='es6' | 'require' | 'global' | 'none';
export type ModuleType = 'es6' | 'require' | 'global' | 'none';
export type ErrorSink = (message: string, start: Pos | undefined, end: Pos | undefined) => void;