UNPKG

@asyncapi/react-component

Version:

A React component for AsyncAPI specification.

12 lines 393 B
import { TagsInterface } from '@asyncapi/parser'; export interface TagObject<T = any> { name: string; tags: TagsInterface; data: T; } export interface SortedReturnType { tagged: Map<string, TagObject[]>; untagged: TagObject[]; } export declare function filterObjectsByTags<T>(tags: string[], objects: TagObject<T>[]): SortedReturnType; //# sourceMappingURL=sidebar.d.ts.map