You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
625 B
13 lines
625 B
import { DurationEvent } from './types/EventInterfaces';
|
|
/**
|
|
* This transformer can take in the path of the profile, the source map (optional) and the bundle file name (optional)
|
|
* and return a promise which resolves to Chrome Dev Tools compatible events
|
|
* @param profilePath string
|
|
* @param sourceMapPath string
|
|
* @param bundleFileName string
|
|
* @return Promise<DurationEvent[]>
|
|
*/
|
|
declare const transformer: (profilePath: string, sourceMapPath: string | undefined, bundleFileName: string | undefined) => Promise<DurationEvent[]>;
|
|
export default transformer;
|
|
export { SourceMap } from './types/SourceMap';
|