n8n-nodes-base
Version:
Base nodes of n8n
18 lines (15 loc) • 674 B
text/typescript
/**
* Microsoft Excel 365 - Workbook Resource
* Re-exports all operation types for this resource.
*/
import type { MicrosoftExcelV2WorkbookAddWorksheetNode } from './operation_add_worksheet';
import type { MicrosoftExcelV2WorkbookDeleteWorkbookNode } from './operation_delete_workbook';
import type { MicrosoftExcelV2WorkbookGetAllNode } from './operation_get_all';
export * from './operation_add_worksheet';
export * from './operation_delete_workbook';
export * from './operation_get_all';
export type MicrosoftExcelV2WorkbookNode =
| MicrosoftExcelV2WorkbookAddWorksheetNode
| MicrosoftExcelV2WorkbookDeleteWorkbookNode
| MicrosoftExcelV2WorkbookGetAllNode
;