UNPKG

425 BTypeScriptView Raw
1/**
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 */
7import callsites = require('callsites');
8
9export declare function getCallsite(
10 level: number,
11 sourceMaps?: SourceMapRegistry | null,
12): callsites.CallSite;
13
14export declare type SourceMapRegistry = Map<string, string>;
15
16export {};