refactor(nav): remove stencil nav delegate as a component

This commit is contained in:
Brandy Carney
2017-11-30 12:35:36 -05:00
parent 55839e27d5
commit eef1ac6293
4 changed files with 7 additions and 47 deletions

View File

@ -1818,36 +1818,6 @@ declare global {
}
import {
StencilNavDelegate as StencilIonNavDelegate
} from './components/nav-controller/stencil-nav-delegate';
declare global {
interface HTMLStencilIonNavDelegateElement extends StencilIonNavDelegate, HTMLElement {
}
var HTMLStencilIonNavDelegateElement: {
prototype: HTMLStencilIonNavDelegateElement;
new (): HTMLStencilIonNavDelegateElement;
};
interface HTMLElementTagNameMap {
"stencil-ion-nav-delegate": HTMLStencilIonNavDelegateElement;
}
interface ElementTagNameMap {
"stencil-ion-nav-delegate": HTMLStencilIonNavDelegateElement;
}
namespace JSX {
interface IntrinsicElements {
"stencil-ion-nav-delegate": JSXElements.StencilIonNavDelegateAttributes;
}
}
namespace JSXElements {
export interface StencilIonNavDelegateAttributes extends HTMLAttributes {
}
}
}
import {
Nav as IonNav
} from './components/nav/nav';