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