/**
 * Microsoft Excel - Table Resource
 * Re-exports all operation types for this resource.
 */

import type { MicrosoftExcelV1TableAddRowNode } from './operation_add_row';
import type { MicrosoftExcelV1TableGetColumnsNode } from './operation_get_columns';
import type { MicrosoftExcelV1TableGetRowsNode } from './operation_get_rows';
import type { MicrosoftExcelV1TableLookupNode } from './operation_lookup';

export * from './operation_add_row';
export * from './operation_get_columns';
export * from './operation_get_rows';
export * from './operation_lookup';

export type MicrosoftExcelV1TableNode =
  | MicrosoftExcelV1TableAddRowNode
  | MicrosoftExcelV1TableGetColumnsNode
  | MicrosoftExcelV1TableGetRowsNode
  | MicrosoftExcelV1TableLookupNode
  ;