netkitty
Version:
Network tools kit
23 lines • 463 B
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;
}
//# sourceMappingURL=ICaptureOptions.d.ts.map