n8n-nodes-base
Version:
Base nodes of n8n
18 lines (15 loc) • 503 B
text/typescript
/**
* Yourls - Url Resource
* Re-exports all operation types for this resource.
*/
import type { YourlsV1UrlExpandNode } from './operation_expand';
import type { YourlsV1UrlShortenNode } from './operation_shorten';
import type { YourlsV1UrlStatsNode } from './operation_stats';
export * from './operation_expand';
export * from './operation_shorten';
export * from './operation_stats';
export type YourlsV1UrlNode =
| YourlsV1UrlExpandNode
| YourlsV1UrlShortenNode
| YourlsV1UrlStatsNode
;