forked from marcj/css-element-queries
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement native ES module support via rollup
close marcj#298
- Loading branch information
Showing
9 changed files
with
1,047 additions
and
6 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
node_modules/ | ||
yarn.lock | ||
package-lock.json |
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,14 @@ | ||
export declare class ElementQueries { | ||
/** | ||
* Attaches to DOMLoadContent | ||
*/ | ||
static listen(): void; | ||
|
||
/** | ||
* Parses all available CSS and attach ResizeSensor to those elements which have rules attached. | ||
* Make sure this is called after 'load' event, because CSS files are not ready when domReady is fired. | ||
*/ | ||
static init(): void; | ||
} | ||
|
||
export default ElementQueries; |
Oops, something went wrong.