type FileExtension = string; export type CompilerSync = (source: string, path: string) => string; export type CompilerResult = string | PromiseLike; export type Compiler = (source: string, path: string) => CompilerResult; export type RawCompilers = Map; export type Compilers = Map; export type HasDependency = (pkgName: string) => boolean; export {};