mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
10 lines
306 B
TypeScript
10 lines
306 B
TypeScript
import { ActionSheetOptions } from '@ionic/core';
|
|
import { OverlayBaseController } from '../util';
|
|
|
|
export const CTRL = 'ion-action-sheet-controller';
|
|
export class ActionSheetController extends OverlayBaseController<ActionSheetOptions, HTMLIonActionSheetElement> {
|
|
constructor() {
|
|
super(CTRL);
|
|
}
|
|
}
|