persona-community-5/.pnpm-store/v3/files/ac/601b602ea2f2ca436cb9f4ba7b825dac4464a5a5e2395d8e7b8abd4881680041511b25ac2899e39bbebd9f6fb3fe5489865b490b34a0675c1d1050edecd041
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

22 lines
431 B
Plaintext

export interface Async2Definition {
asyncapi: string;
info?: Async2Info;
}
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;
}