chore(types): convert type literals to records (#1615)

This commit is contained in:
Stanislav
2020-07-19 05:56:28 +03:00
committed by GitHub
parent b8db7ab889
commit fa5ddf8d06
5 changed files with 5 additions and 5 deletions

View File

@@ -214,7 +214,7 @@ export function setBlockTracking(value: number) {
*/
export function createBlock(
type: VNodeTypes | ClassComponent,
props?: { [key: string]: any } | null,
props?: Record<string, any> | null,
children?: any,
patchFlag?: number,
dynamicProps?: string[]