Skip to content

Instantly share code, notes, and snippets.

@matthieu-D
Created October 28, 2017 16:31
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 matthieu-D/af6c67afeee677cc5db416f0f6ee0799 to your computer and use it in GitHub Desktop.
Save matthieu-D/af6c67afeee677cc5db416f0f6ee0799 to your computer and use it in GitHub Desktop.
/**
* This is an autogenerated file created by the Stencil build process.
* It contains typing information for all components that exist in this project
* and imports for stencil collections that might be configured in your stencil.config.js file
*/
import '@stencil/router';
import { MyName as MyName } from './components/my-name/my-name';
interface HTMLMyNameElement extends MyName, HTMLElement {
}
declare var HTMLMyNameElement: {
prototype: HTMLMyNameElement;
new (): HTMLMyNameElement;
};
declare global {
interface HTMLElementTagNameMap {
"my-name": HTMLMyNameElement;
}
interface ElementTagNameMap {
"my-name": HTMLMyNameElement;
}
namespace JSX {
interface IntrinsicElements {
"my-name": JSXElements.MyNameAttributes;
}
}
namespace JSXElements {
export interface MyNameAttributes extends HTMLAttributes {
first?: any,
last?: any
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment