mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-11 19:49:18 +08:00
fix(all): strong typed events
This commit is contained in:
@@ -82,22 +82,22 @@ export class ActionSheet implements OverlayInterface {
|
||||
/**
|
||||
* Emitted after the alert has loaded.
|
||||
*/
|
||||
@Event() ionActionSheetDidLoad!: EventEmitter;
|
||||
@Event() ionActionSheetDidLoad!: EventEmitter<void>;
|
||||
|
||||
/**
|
||||
* Emitted after the alert has unloaded.
|
||||
*/
|
||||
@Event() ionActionSheetDidUnload!: EventEmitter;
|
||||
@Event() ionActionSheetDidUnload!: EventEmitter<void>;
|
||||
|
||||
/**
|
||||
* Emitted after the alert has presented.
|
||||
*/
|
||||
@Event({eventName: 'ionActionSheetDidPresent'}) didPresent!: EventEmitter;
|
||||
@Event({eventName: 'ionActionSheetDidPresent'}) didPresent!: EventEmitter<void>;
|
||||
|
||||
/**
|
||||
* Emitted before the alert has presented.
|
||||
*/
|
||||
@Event({eventName: 'ionActionSheetWillPresent'}) willPresent!: EventEmitter;
|
||||
@Event({eventName: 'ionActionSheetWillPresent'}) willPresent!: EventEmitter<void>;
|
||||
|
||||
/**
|
||||
* Emitted before the alert has dismissed.
|
||||
|
||||
Reference in New Issue
Block a user