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

InputText

Text input component

type InputText = {
custom_id: string;
label: string;
min_length?: number;
max_length?: number;
required?: boolean;
value?: string;
placeholder?: string;
}
;

§Type

§
{
custom_id: string;
label: string;
min_length?: number;
max_length?: number;
required?: boolean;
value?: string;
placeholder?: string;
}
[src]