n8n-nodes-base
Version:
Base nodes of n8n
15 lines (12 loc) • 481 B
text/typescript
/**
* Microsoft Excel - Worksheet Resource
* Re-exports all operation types for this resource.
*/
import type { MicrosoftExcelV1WorksheetGetAllNode } from './operation_get_all';
import type { MicrosoftExcelV1WorksheetGetContentNode } from './operation_get_content';
export * from './operation_get_all';
export * from './operation_get_content';
export type MicrosoftExcelV1WorksheetNode =
| MicrosoftExcelV1WorksheetGetAllNode
| MicrosoftExcelV1WorksheetGetContentNode
;