UNPKG

solidityscan

Version:

SolidityScan is a tool for scanning Solidity smart contracts for vulnerabilities.

19 lines (17 loc) 395 B
declare module 'request' { const request: any; export default request; } declare module 'archiver' { const archiver: any; export default archiver; } declare module 'ws' { export default class WebSocket { static Server: any; constructor(url: string, options?: any); on(event: string, cb: (...args: any[]) => void): void; send(data: any): void; close(): void; } }