mirror of
https://github.com/discordjs/discord.js.git
synced 2026-05-31 08:00:07 +00:00
12 lines
348 B
TypeScript
12 lines
348 B
TypeScript
import type { ApiVariable } from '@microsoft/api-extractor-model';
|
|
import { Documentation } from '../documentation/Documentation';
|
|
import { ObjectHeader } from '../documentation/ObjectHeader';
|
|
|
|
export function Variable({ item }: { readonly item: ApiVariable }) {
|
|
return (
|
|
<Documentation>
|
|
<ObjectHeader item={item} />
|
|
</Documentation>
|
|
);
|
|
}
|