Skip to content

Commit 8192465

Browse files
committed
chore: tweaks
1 parent 258ff1e commit 8192465

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/compiler-vapor/src/generators/component.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,17 +93,17 @@ export function genCreateComponent(
9393
}
9494
}
9595

96-
type InlineHandlerValue = {
96+
type InlineHandler = {
9797
name: string
9898
value: SimpleExpressionNode
9999
}
100100

101101
function processInlineHandlers(
102102
props: IRProps[],
103103
context: CodegenContext,
104-
): [Record<string, null>, InlineHandlerValue[]] {
104+
): [Record<string, null>, InlineHandler[]] {
105105
const ids: Record<string, null> = Object.create(null)
106-
const handlers: InlineHandlerValue[] = []
106+
const handlers: InlineHandler[] = []
107107
const staticProps = props[0]
108108
if (isArray(staticProps)) {
109109
for (let i = 0; i < staticProps.length; i++) {

0 commit comments

Comments
 (0)