persona-community-5/.pnpm-store/v3/files/f3/d069abd5aa0bf380babf72c4c7cc06a61916a6af8c6e50801087b8b1fadec4cd891c0cd5c2bd0b805edcbbfa02f7623852d8f14144cb11f94167d7967fb623
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

27 lines
418 B
Plaintext

export interface Async2Definition {
asyncapi: string;
info?: Async2Info;
// TBD
}
export interface Async2Info {
title: string;
version: string;
description?: string;
termsOfService?: string;
contact?: Async2Contact;
license?: Async2License;
}
export interface Async2Contact {
name?: string;
url?: string;
email?: string;
}
export interface Async2License {
name: string;
url?: string;
}