n8n-nodes-base
Version:
Base nodes of n8n
18 lines (15 loc) • 547 B
text/typescript
/**
* Netscaler ADC - File Resource
* Re-exports all operation types for this resource.
*/
import type { CitrixAdcV1FileDeleteNode } from './operation_delete';
import type { CitrixAdcV1FileDownloadNode } from './operation_download';
import type { CitrixAdcV1FileUploadNode } from './operation_upload';
export * from './operation_delete';
export * from './operation_download';
export * from './operation_upload';
export type CitrixAdcV1FileNode =
| CitrixAdcV1FileDeleteNode
| CitrixAdcV1FileDownloadNode
| CitrixAdcV1FileUploadNode
;