UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

15 lines (12 loc) 402 B
/** * Metabase - Metrics Resource * Re-exports all operation types for this resource. */ import type { MetabaseV1MetricsGetNode } from './operation_get'; import type { MetabaseV1MetricsGetAllNode } from './operation_get_all'; export * from './operation_get'; export * from './operation_get_all'; export type MetabaseV1MetricsNode = | MetabaseV1MetricsGetNode | MetabaseV1MetricsGetAllNode ;