chore(ci): account for components.d.ts in clean build (#25769)

This commit is contained in:
Liam DeBeasi
2022-08-16 16:17:24 -05:00
committed by GitHub
parent bafa759655
commit 2547b0b4e1
2 changed files with 4 additions and 1 deletions

View File

@ -671,6 +671,9 @@ export namespace Components {
* If `true`, the content will scroll behind the headers and footers. This effect can easily be seen by setting the toolbar to transparent.
*/
"fullscreen": boolean;
/**
* Returns the background content element.
*/
"getBackgroundElement": () => Promise<HTMLElement>;
/**
* Get the element where the actual scrolling takes place. This element can be used to subscribe to `scroll` events or manually modify `scrollTop`. However, it's recommended to use the API provided by `ion-content`: i.e. Using `ionScroll`, `ionScrollStart`, `ionScrollEnd` for scrolling events and `scrollToPoint()` to scroll the content into a certain point.