/**
 * 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
  ;