style: remove unused interface

This commit is contained in:
2026-01-10 05:21:20 -03:00
parent f26cae5b26
commit c81cf5d470
-16
View File
@@ -3,22 +3,6 @@ import * as path from 'path';
import 'colorts/lib/string';
interface CallSite {
getThis(): unknown;
getTypeName(): string | null;
getFunction(): Function | undefined;
getFunctionName(): string | null;
getMethodName(): string | null;
getFileName(): string | null;
getLineNumber(): number | null;
getColumnNumber(): number | null;
getEvalOrigin(): string | undefined;
isToplevel(): boolean;
isEval(): boolean;
isNative(): boolean;
isConstructor(): boolean;
}
/*
helper fns
*/