n8n-nodes-base
Version:
Base nodes of n8n
18 lines (15 loc) • 530 B
text/typescript
/**
* urlscan.io - Scan Resource
* Re-exports all operation types for this resource.
*/
import type { UrlScanIoV1ScanGetNode } from './operation_get';
import type { UrlScanIoV1ScanGetAllNode } from './operation_get_all';
import type { UrlScanIoV1ScanPerformNode } from './operation_perform';
export * from './operation_get';
export * from './operation_get_all';
export * from './operation_perform';
export type UrlScanIoV1ScanNode =
| UrlScanIoV1ScanGetNode
| UrlScanIoV1ScanGetAllNode
| UrlScanIoV1ScanPerformNode
;