mirror of
https://github.com/discordjs/discord.js.git
synced 2026-06-02 00:50:09 +00:00
11 lines
360 B
TypeScript
11 lines
360 B
TypeScript
import type { ApiModel, Excerpt } from '@microsoft/api-extractor-model';
|
|
import { ExcerptText } from './ExcerptText';
|
|
|
|
export function SignatureText({ excerpt, model }: { readonly excerpt: Excerpt; readonly model: ApiModel }) {
|
|
return (
|
|
<h4 className="break-all text-lg font-bold font-mono">
|
|
<ExcerptText excerpt={excerpt} model={model} />
|
|
</h4>
|
|
);
|
|
}
|