From 67b97edd6497fba5ce5eb7aba833ca5b263e7bb3 Mon Sep 17 00:00:00 2001 From: pushkin Date: Sun, 27 Dec 2020 04:42:10 +0100 Subject: [PATCH] Update Component.ts --- src/runtime/internal/Component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/internal/Component.ts b/src/runtime/internal/Component.ts index 68a0e7a48c..c33e1e567f 100644 --- a/src/runtime/internal/Component.ts +++ b/src/runtime/internal/Component.ts @@ -11,7 +11,7 @@ interface Fragment { /* claim */ l?: (nodes: any) => void; /* hydrate */ h?: () => void; /* mount */ m: (target: HTMLElement, anchor: any) => void; - /* update */ p?: (ctx: any, dirty: any) => void; + /* update */ p: (ctx: any, dirty: any) => void; /* measure */ r?: () => void; /* fix */ f?: () => void; /* animate */ a?: () => void;