UNPKG

@beincom/node-profile

Version:

``` npm install @beincom/node-profile # yarn add @beincom/node-profile ```

11 lines (10 loc) 258 B
import { Profile } from 'pprof-format'; export interface ProfileExport { profile: Profile; sampleRate?: number; startedAt: Date; stoppedAt: Date; } export interface ProfileExporter { export(profileExport: ProfileExport): Promise<void>; }