/** * Trello - List Resource * Re-exports all operation types for this resource. */ import type { TrelloV1ListArchiveNode } from './operation_archive'; import type { TrelloV1ListCreateNode } from './operation_create'; import type { TrelloV1ListGetNode } from './operation_get'; import type { TrelloV1ListGetAllNode } from './operation_get_all'; import type { TrelloV1ListGetCardsNode } from './operation_get_cards'; import type { TrelloV1ListUpdateNode } from './operation_update'; export * from './operation_archive'; export * from './operation_create'; export * from './operation_get'; export * from './operation_get_all'; export * from './operation_get_cards'; export * from './operation_update'; export type TrelloV1ListNode = | TrelloV1ListArchiveNode | TrelloV1ListCreateNode | TrelloV1ListGetNode | TrelloV1ListGetAllNode | TrelloV1ListGetCardsNode | TrelloV1ListUpdateNode ;