n8n-nodes-base
Version:
Base nodes of n8n
15 lines (12 loc) • 483 B
text/typescript
/**
* Microsoft Excel - Workbook Resource
* Re-exports all operation types for this resource.
*/
import type { MicrosoftExcelV1WorkbookAddWorksheetNode } from './operation_add_worksheet';
import type { MicrosoftExcelV1WorkbookGetAllNode } from './operation_get_all';
export * from './operation_add_worksheet';
export * from './operation_get_all';
export type MicrosoftExcelV1WorkbookNode =
| MicrosoftExcelV1WorkbookAddWorksheetNode
| MicrosoftExcelV1WorkbookGetAllNode
;