diff options
author | 2022-12-03 08:25:25 -0800 | |
---|---|---|
committer | 2022-12-03 08:26:53 -0800 | |
commit | 10b04fbd265d5a6412fedede8d0772ae90242c3e (patch) | |
tree | a1823a85a637897f4e6b593bd616735a9708cfed | |
parent | bdc43c1696f0d759d28cfb63a2eb1aed5273d55f (diff) | |
download | bun-10b04fbd265d5a6412fedede8d0772ae90242c3e.tar.gz bun-10b04fbd265d5a6412fedede8d0772ae90242c3e.tar.zst bun-10b04fbd265d5a6412fedede8d0772ae90242c3e.zip |
Add missing type
-rw-r--r-- | packages/bun-types/jsc.d.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/bun-types/jsc.d.ts b/packages/bun-types/jsc.d.ts index c4dce65df..30c7caebd 100644 --- a/packages/bun-types/jsc.d.ts +++ b/packages/bun-types/jsc.d.ts @@ -57,4 +57,9 @@ declare module "bun:jsc" { * This is untested. May not be supported yet on macOS */ export function startRemoteDebugger(host?: string, port?: number): void; + + /** + * Run JavaScriptCore's sampling profiler + */ + export function startSamplingProfiler(optionalDirectory?: string): void; } |