generated from finsweet/developer-starter
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5144d26
commit fcf54aa
Showing
3 changed files
with
36 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/** | ||
* CMS | ||
*/ | ||
export type CollectionListWrapperElement = HTMLDivElement; | ||
export type CollectionListElement = HTMLDivElement; | ||
export type CollectionItemElement = HTMLDivElement; | ||
export type CollectionEmptyElement = HTMLDivElement; | ||
export type PaginationButtonElement = HTMLAnchorElement; | ||
|
||
/** | ||
* 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 = HTMLDivElement; | ||
export type TabsContentElement = HTMLDivElement; | ||
export type TabPaneElement = HTMLDivElement; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters