tiny-essentials
Version:
Collection of small, essential scripts designed to be used across various projects. These simple utilities are crafted for speed, ease of use, and versatility.
96 lines • 6.01 kB
text/typescript
export default TinyHtmlElems;
/**
* @class
* @beta
*/
declare class TinyHtmlElems {
static "__#private@#list": (typeof TinyHtmlTemplate | typeof TinyHtmlAnchor | typeof TinyHtmlButton | typeof TinyHtmlCanvas | typeof TinyHtmlDatalist | typeof TinyHtmlEmbed | typeof TinyHtmlForm | typeof TinyHtmlIcon | typeof TinyHtmlIframe | typeof TinyHtmlImage | typeof TinyHtmlInput | typeof TinyHtmlLink | typeof TinyHtmlMedia | typeof TinyHtmlScript | typeof TinyHtmlSelect | typeof TinyHtmlStyle | typeof TinyHtmlTextarea | typeof TinyHtmlResetInput | typeof TinyHtmlNumberInput | typeof TinyHtmlFileInput | typeof TinyHtmlHiddenInput | typeof TinyHtmlImageInput | typeof TinyHtmlAudio | typeof TinyHtmlObject | typeof TinyHtmlSource)[];
static get list(): (typeof TinyHtmlTemplate | typeof TinyHtmlAnchor | typeof TinyHtmlButton | typeof TinyHtmlCanvas | typeof TinyHtmlDatalist | typeof TinyHtmlEmbed | typeof TinyHtmlForm | typeof TinyHtmlIcon | typeof TinyHtmlIframe | typeof TinyHtmlImage | typeof TinyHtmlInput | typeof TinyHtmlLink | typeof TinyHtmlMedia | typeof TinyHtmlScript | typeof TinyHtmlSelect | typeof TinyHtmlStyle | typeof TinyHtmlTextarea | typeof TinyHtmlResetInput | typeof TinyHtmlNumberInput | typeof TinyHtmlFileInput | typeof TinyHtmlHiddenInput | typeof TinyHtmlImageInput | typeof TinyHtmlAudio | typeof TinyHtmlObject | typeof TinyHtmlSource)[];
static ButtonInput: typeof TinyHtmlButtonInput;
static ResetInput: typeof TinyHtmlResetInput;
static SubmitInput: typeof TinyHtmlSubmitInput;
static NumberInput: typeof TinyHtmlNumberInput;
static RangerInput: typeof TinyHtmlRangeInput;
static CheckboxInput: typeof TinyHtmlCheckboxInput;
static RadioInput: typeof TinyHtmlRadioInput;
static DateInput: typeof TinyHtmlDateInput;
static DateTimeInput: typeof TinyHtmlDateTimeInput;
static MonthInput: typeof TinyHtmlMonthInput;
static TimeInput: typeof TinyHtmlTimeInput;
static WeekInput: typeof TinyHtmlWeekInput;
static EmailInput: typeof TinyHtmlEmailInput;
static PasswordInput: typeof TinyHtmlPasswordInput;
static SearchInput: typeof TinyHtmlSearchInput;
static TelInput: typeof TinyHtmlTelInput;
static TextInput: typeof TinyHtmlTextInput;
static UrlInput: typeof TinyHtmlUrlInput;
static ColorInput: typeof TinyHtmlColorInput;
static FileInput: typeof TinyHtmlFileInput;
static HiddenInput: typeof TinyHtmlHiddenInput;
static ImgInput: typeof TinyHtmlImageInput;
static Audio: typeof TinyHtmlAudio;
static Button: typeof TinyHtmlButton;
static Canvas: typeof TinyHtmlCanvas;
static Embed: typeof TinyHtmlEmbed;
static Form: typeof TinyHtmlForm;
static Icon: typeof TinyHtmlIcon;
static Iframe: typeof TinyHtmlIframe;
static Img: typeof TinyHtmlImage;
static Input: typeof TinyHtmlInput;
static Anchor: typeof TinyHtmlAnchor;
static Object: typeof TinyHtmlObject;
static Select: typeof TinyHtmlSelect;
static Textarea: typeof TinyHtmlTextarea;
static Video: typeof TinyHtmlVideo;
static Media: typeof TinyHtmlMedia;
static Source: typeof TinyHtmlSource;
static Datalist: typeof TinyHtmlDatalist;
static Link: typeof TinyHtmlLink;
static Script: typeof TinyHtmlScript;
static Style: typeof TinyHtmlStyle;
static Element: typeof TinyHtmlTemplate;
}
import TinyHtmlTemplate from './TinyHtmlTemplate.mjs';
import TinyHtmlAnchor from './TinyHtmlAnchor.mjs';
import TinyHtmlButton from './TinyHtmlButton.mjs';
import TinyHtmlCanvas from './TinyHtmlCanvas.mjs';
import TinyHtmlDatalist from './TinyHtmlDatalist.mjs';
import TinyHtmlEmbed from './TinyHtmlEmbed.mjs';
import TinyHtmlForm from './TinyHtmlForm.mjs';
import TinyHtmlIcon from './TinyHtmlIcon.mjs';
import TinyHtmlIframe from './TinyHtmlIframe.mjs';
import TinyHtmlImage from './TinyHtmlImage.mjs';
import TinyHtmlInput from './TinyHtmlInput.mjs';
import TinyHtmlLink from './TinyHtmlLink.mjs';
import TinyHtmlMedia from './TinyHtmlMedia.mjs';
import TinyHtmlScript from './TinyHtmlScript.mjs';
import TinyHtmlSelect from './TinyHtmlSelect.mjs';
import TinyHtmlStyle from './TinyHtmlStyle.mjs';
import TinyHtmlTextarea from './TinyHtmlTextarea.mjs';
import TinyHtmlResetInput from './input/button/TinyHtmlResetInput.mjs';
import TinyHtmlNumberInput from './input/number/TinyHtmlNumberInput.mjs';
import TinyHtmlFileInput from './input/TinyHtmlFileInput.mjs';
import TinyHtmlHiddenInput from './input/TinyHtmlHiddenInput.mjs';
import TinyHtmlImageInput from './input/TinyHtmlImageInput.mjs';
import TinyHtmlAudio from './media/TinyHtmlAudio.mjs';
import TinyHtmlObject from './media/TinyHtmlObject.mjs';
import TinyHtmlSource from './media/TinyHtmlSource.mjs';
import TinyHtmlButtonInput from './input/button/TinyHtmlButtonInput.mjs';
import TinyHtmlSubmitInput from './input/button/TinyHtmlSubmitInput.mjs';
import TinyHtmlRangeInput from './input/number/TinyHtmlRangeInput.mjs';
import TinyHtmlCheckboxInput from './input/check/TinyHtmlCheckboxInput.mjs';
import TinyHtmlRadioInput from './input/check/TinyHtmlRadioInput.mjs';
import TinyHtmlDateInput from './input/date/TinyHtmlDateInput.mjs';
import TinyHtmlDateTimeInput from './input/date/TinyHtmlDateTimeInput.mjs';
import TinyHtmlMonthInput from './input/date/TinyHtmlMonthInput.mjs';
import TinyHtmlTimeInput from './input/date/TinyHtmlTimeInput.mjs';
import TinyHtmlWeekInput from './input/date/TinyHtmlWeekInput.mjs';
import TinyHtmlEmailInput from './input/text/TinyHtmlEmailInput.mjs';
import TinyHtmlPasswordInput from './input/text/TinyHtmlPasswordInput.mjs';
import TinyHtmlSearchInput from './input/text/TinyHtmlSearchInput.mjs';
import TinyHtmlTelInput from './input/text/TinyHtmlTelInput.mjs';
import TinyHtmlTextInput from './input/text/TinyHtmlTextInput.mjs';
import TinyHtmlUrlInput from './input/text/TinyHtmlUrlInput.mjs';
import TinyHtmlColorInput from './input/TinyHtmlColorInput.mjs';
import TinyHtmlVideo from './media/TinyHtmlVideo.mjs';
//# sourceMappingURL=index.d.mts.map