UNPKG

@finsweet/ts-utils

Version:

Typescript utils for custom Webflow projects.

44 lines (43 loc) 1.31 kB
/** * CMS */ export type CollectionListWrapperElement = HTMLDivElement; export type CollectionListElement = HTMLDivElement; export type CollectionItemElement = HTMLDivElement; export type CollectionEmptyElement = HTMLDivElement; export type PaginationWrapperElement = HTMLDivElement; export type PaginationButtonElement = HTMLAnchorElement; export type PageCountElement = HTMLDivElement; /** * Forms */ export type FormBlockElement = HTMLDivElement; export type FormSuccessElement = HTMLDivElement; export type FormErrorElement = HTMLDivElement; /** * Sliders */ export type SliderElement = HTMLDivElement; export type SliderMaskElement = HTMLDivElement; export type SlideElement = HTMLDivElement; export type SliderArrowElement = HTMLDivElement; export type SliderNavElement = HTMLDivElement; export type SliderDotElement = HTMLDivElement; /** * Tabs */ export type TabsElement = HTMLDivElement; export type TabsMenuElement = HTMLDivElement; export type TabLinkElement = HTMLLinkElement; export type TabsContentElement = HTMLDivElement; export type TabPaneElement = HTMLDivElement; /** * Rich Text Block */ export type RichTextBlockElement = HTMLDivElement; /** * Dropdowns */ export type Dropdown = HTMLDivElement; export type DropdownToggle = HTMLDivElement; export type DropdownList = HTMLElement;