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 { MicrosoftExcelV22WorkbookAddWorksheetNode } from './operation_add_worksheet';
import type { MicrosoftExcelV22WorkbookDeleteWorkbookNode } from './operation_delete_workbook';
import type { MicrosoftExcelV22WorkbookGetAllNode } from './operation_get_all';
export * from './operation_add_worksheet';
export * from './operation_delete_workbook';
export * from './operation_get_all';
export type MicrosoftExcelV22WorkbookNode =
| MicrosoftExcelV22WorkbookAddWorksheetNode
| MicrosoftExcelV22WorkbookDeleteWorkbookNode
| MicrosoftExcelV22WorkbookGetAllNode
;