telefunc
Version:
Remote functions. Instead of API.
15 lines (14 loc) • 415 B
TypeScript
export { rollupSourceMapRemove };
export { rollupSourceMapPassthrough };
/** Remove entire source mapping, to save KBs. */
declare function rollupSourceMapRemove(code: string): {
code: string;
map: {
mappings: '';
};
};
/** Don't provide any source map, pass through current source map instead. */
declare function rollupSourceMapPassthrough(code: string): {
code: string;
map: null;
};