Skip to content

Instantly share code, notes, and snippets.

@jthoms1
Last active August 7, 2018 19:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jthoms1/94f58e7a5499818029526ac23a685bf5 to your computer and use it in GitHub Desktop.
Save jthoms1/94f58e7a5499818029526ac23a685bf5 to your computer and use it in GitHub Desktop.
/**
* This is an autogenerated file created by the Stencil compiler.
* It contains typing information for all components that exist in this project.
*/
/* tslint:disable */
import { JSXElements } from '@stencil/core';
import '@stencil/router';
import '@stencil/state-tunnel';
import {
MatchResults,
} from '@stencil/router';
declare namespace StencilComponents {
interface AppHome {}
interface AppHomeAttributes<T> extends JSXElements.HTMLAttributes<T> {}
interface AppProfile {
'match': MatchResults;
}
interface AppProfileAttributes<T> extends JSXElements.HTMLAttributes<T> {
'match'?: MatchResults;
}
interface AppRoot {}
interface AppRootAttributes<T> extends JSXElements.HTMLAttributes<T> {}
}
export interface IntrinsicElements {
'app-home': StencilComponents.AppHomeAttributes<HTMLAppHomeElement>;
'app-profile': StencilComponents.AppProfileAttributes<HTMLAppProfileElement>;
'app-root': StencilComponents.AppRootAttributes<HTMLAppRootElement>;
}
declare global {
interface HTMLAppHomeElement extends StencilComponents.AppHome, HTMLStencilElement {}
var HTMLAppHomeElement: {
prototype: HTMLAppHomeElement;
new (): HTMLAppHomeElement;
};
interface HTMLAppProfileElement extends StencilComponents.AppProfile, HTMLStencilElement {}
var HTMLAppProfileElement: {
prototype: HTMLAppProfileElement;
new (): HTMLAppProfileElement;
};
interface HTMLAppRootElement extends StencilComponents.AppRoot, HTMLStencilElement {}
var HTMLAppRootElement: {
prototype: HTMLAppRootElement;
new (): HTMLAppRootElement;
};
interface HTMLElementTagNameMap {
'app-home': HTMLAppHomeElement
'app-profile': HTMLAppProfileElement
'app-root': HTMLAppRootElement
}
interface ElementTagNameMap {
'app-home': HTMLAppHomeElement;
'app-profile': HTMLAppProfileElement;
'app-root': HTMLAppRootElement;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment