ci(lint): ensure linted results are pushed for build to pass (#25196)

This commit is contained in:
Liam DeBeasi
2022-04-26 22:43:20 +05:45
committed by GitHub
parent 70d278414e
commit b259ca6a1f
7 changed files with 11 additions and 14 deletions

View File

@ -10,9 +10,9 @@ export interface ModalOptions<T extends ComponentRef = ComponentRef> {
delegate?: FrameworkDelegate;
animated?: boolean;
/**
* If `true`, the modal can be swiped to dismiss. Only applies in iOS mode.
* @deprecated - To prevent modals from dismissing, use canDismiss instead.
*/
* If `true`, the modal can be swiped to dismiss. Only applies in iOS mode.
* @deprecated - To prevent modals from dismissing, use canDismiss instead.
*/
swipeToClose?: boolean;
canDismiss?: boolean | (() => Promise<boolean>);