mirror of https://github.com/vuejs/core.git
8 lines
192 B
TypeScript
8 lines
192 B
TypeScript
|
import type { VaporComponent } from './component'
|
||
|
|
||
|
/*! #__NO_SIDE_EFFECTS__ */
|
||
|
export function defineComponent(comp: VaporComponent): VaporComponent {
|
||
|
// TODO type inference
|
||
|
return comp
|
||
|
}
|