netkitty
Version:
Network tools kit
25 lines (22 loc) • 414 B
text/typescript
export interface ICaptureOptions {
/**
* Ethernet interface
*/
device: string
/**
* Capture filter
*/
filter?: string
/**
* Custom capture worker module path
*/
workerModule?: string
/**
* The temporary folder path for storing captured pcap files
*/
tmpDir?: string
/**
* Temporary filename
*/
temporaryFilename?:string
}