microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.1.5

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/typings/source-map-support/source-map-support.d.ts

44lines · modepreview

// Type definitions for source-map-support 0.2.10
// Project: https://github.com/evanw/source-map-support
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../node/node.d.ts" />

declare module 'source-map-support' {
	/**
	 * Output of retrieveSourceMap().
	 */
    export interface UrlAndMap {
        url: string;
        map: string | Buffer;
    }

	/**
	 * Options to install().
	 */
    export interface Options {
        handleUncaughtExceptions?: boolean;
        emptyCacheBetweenOperations?: boolean;
        retrieveFile?: (path: string) => string;
        retrieveSourceMap?: (source: string) => UrlAndMap;
        environment?: "browser" | "node" | "auto";
    }

    export interface Position {
        source: string;
        line: number;
        column: number;
    }

    export function wrapCallSite(frame: any /* StackFrame */): any /* StackFrame */;
    export function getErrorSource(error: Error): string;
    export function mapSourcePosition(position: Position): Position;
    export function retrieveSourceMap(source: string): UrlAndMap;

	/**
	 * Install SourceMap support.
	 * @param options Can be used to e.g. disable uncaughtException handler.
	 */
    export function install(options?: Options): void;
}