refactor: rename packages

This commit is contained in:
Evan You
2018-10-26 15:44:50 -04:00
parent f142c322e0
commit e05673f4d3
81 changed files with 91 additions and 91 deletions

12
packages/runtime-core/jsx.d.ts vendored Normal file
View File

@@ -0,0 +1,12 @@
declare namespace JSX {
interface Element {}
interface ElementClass {
render(props: any, slots: any, attrs: any): any
}
interface ElementAttributesProperty {
$props: {}
}
interface IntrinsicElements {
[name: string]: any
}
}