Skip to content

Commit

Permalink
Merge pull request #3880 from RaddishIoW/master
Browse files Browse the repository at this point in the history
Fix missing type definitions for Sheet Modal App Methods for step methods
  • Loading branch information
nolimits4web authored Apr 30, 2021
2 parents ce7a2dc + 73167fb commit 4ca7020
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/core/components/sheet/sheet.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,12 @@ export namespace Sheet {
open(el?: HTMLElement | CSSSelector, animate?: boolean): Sheet;
/** closes Sheet Modal */
close(el?: HTMLElement | CSSSelector, animate?: boolean): Sheet;
/** open/expand Sheet swipe step */
stepOpen(el?: HTMLElement | CSSSelector): Sheet;
/** close/collapse Sheet swipe step */
stepClose(el?: HTMLElement | CSSSelector): Sheet;
/** toggle (open or close) Sheet swipe step */
stepToggle(el?: HTMLElement | CSSSelector): Sheet;
};
}
interface AppParams {
Expand Down

0 comments on commit 4ca7020

Please sign in to comment.