Files
ionic-framework/vue/src/controllers/action-sheet-controller.ts
2018-12-04 16:13:55 -05:00

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);
}
}