sicua
Version:
A tool for analyzing project structure and dependencies
13 lines (12 loc) • 567 B
TypeScript
import ts from "typescript";
export declare class RiskAnalysisUtils {
static isFileSystemOperation(node: ts.Node): boolean;
static isNetworkRequest(node: ts.Node): boolean;
static isDataParsing(node: ts.Node): boolean;
static isExternalAPICall(node: ts.Node): boolean;
static isDatabaseOperation(node: ts.Node): boolean;
static isStateUpdate(node: ts.Node): boolean;
static isComplexCalculation(node: ts.Node): boolean;
static isThirdPartyLibraryCall(node: ts.Node): boolean;
static isDataTransformation(node: ts.Node): boolean;
}