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