types: fix createComponent spec

This commit is contained in:
Evan You
2019-08-21 17:10:37 -04:00
parent b5384006d2
commit 8a01c8e549
2 changed files with 5 additions and 5 deletions

View File

@@ -125,8 +125,8 @@ export type ComponentInstance<P = Data, S = Data> = {
// overload 1: direct setup function
// (uses user defined props interface)
export function createComponent<Props>(
setup: (props: Props, ctx: SetupContext) => (() => unknown)
): (props: Props) => unknown
setup: (props: Props, ctx: SetupContext) => object | (() => VNodeChild)
): (props: Props) => any
// overload 2: object format with no props
// (uses user defined props interface)
// return type is for Vetur and TSX support