UNPKG

159 BTypeScriptView Raw
1/**
2 * helper function to remap imports
3 * @param x
4 * @param map
5 */
6export declare function remapImports<T, Y>(x: Promise<T>, map: (a: T) => Y): Promise<Y>;