type FileExtension = string; export type CompilerSync = (source: string, path: string) => string; export type CompilerAsync = (source: string, path: string) => Promise; export type RawSyncCompilers = Map; export type SyncCompilers = Map; export type AsyncCompilers = Map; export type Compilers = [SyncCompilers, AsyncCompilers]; export type HasDependency = (pkgName: string) => boolean; export {};