Skip to content

Instantly share code, notes, and snippets.

@matthieu-D
Created October 28, 2017 16:38
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/5d774bea95bc4890aad1cf83deadbf05 to your computer and use it in GitHub Desktop.
Save matthieu-D/5d774bea95bc4890aad1cf83deadbf05 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 { TodoList as TodoList } from './components/todo-list/todo-list';
interface HTMLTodoListElement extends TodoList, HTMLElement {
}
declare var HTMLTodoListElement: {
prototype: HTMLTodoListElement;
new (): HTMLTodoListElement;
};
declare global {
interface HTMLElementTagNameMap {
"todo-list": HTMLTodoListElement;
}
interface ElementTagNameMap {
"todo-list": HTMLTodoListElement;
}
namespace JSX {
interface IntrinsicElements {
"todo-list": JSXElements.TodoListAttributes;
}
}
namespace JSXElements {
export interface TodoListAttributes extends HTMLAttributes {
mode?: string,
color?: string,
first?: string,
last?: string
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment