Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

StringSelectOption

type StringSelectOption = {
label: string;
value: string;
description?: string;
emoji?: Pick<EmojiInfo, "id" | "name" | "animated">;
default?: boolean;
}
;

§Type

§
{
label: string;
value: string;
description?: string;
emoji?: Pick<EmojiInfo, "id" | "name" | "animated">;
default?: boolean;
}
[src]