UNPKG

@mintlify/common

Version:

Commonly shared code within Mintlify

8 lines (7 loc) 316 B
import { AsyncAPIDocumentInterface, ChannelData } from '../../types/asyncapi.js'; type GetChannelDataParams = { document: AsyncAPIDocumentInterface; channelId: string | undefined; }; export declare const getChannelData: ({ document, channelId, }: GetChannelDataParams) => ChannelData | undefined; export {};