mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Fixed unit tests and naming conventions.
This commit is contained in:
Vendored
+20
@@ -0,0 +1,20 @@
|
||||
// Type definitions for node-stack-trace
|
||||
// Project: https://github.com/felixge/node-stack-trace
|
||||
// Definitions by: Exceptionless <https://github.com/exceptionless>
|
||||
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
||||
|
||||
declare module 'stack-trace' {
|
||||
export interface StackFrame {
|
||||
getTypeName():string;
|
||||
getFunctionName():string;
|
||||
getMethodName():string;
|
||||
getFileName():string;
|
||||
getTypeName():string;
|
||||
getLineNumber():number;
|
||||
getColumnNumber():number;
|
||||
isNative():boolean;
|
||||
}
|
||||
|
||||
export function get(belowFn?:() => void): StackFrame[];
|
||||
export function parse(err:Error): StackFrame[];
|
||||
}
|
||||
Reference in New Issue
Block a user