mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-17 10:41:13 +08:00
feat(app): hardware back button support
This commit is contained in:
3
core/src/interface.d.ts
vendored
3
core/src/interface.d.ts
vendored
@ -40,6 +40,9 @@ export type ComponentTags = keyof StencilIntrinsicElements;
|
||||
export type ComponentRef = Function | HTMLElement | string;
|
||||
export type ComponentProps<T = null> = T extends ComponentTags ? StencilIntrinsicElements[T] : {[key: string]: any};
|
||||
export type CssClassMap = { [className: string]: boolean };
|
||||
export type BackButtonEvent = CustomEvent<{
|
||||
register(priority: number, handler: () => Promise<void> | void): void;
|
||||
}>
|
||||
|
||||
declare global {
|
||||
interface StencilGlobalHTMLAttributes {
|
||||
|
Reference in New Issue
Block a user