[fix] fix ctx and dirty type (#7832)

* fix: ctx type

* fix: update function dirty type
pull/7896/head
Xiao Chuan 2 years ago committed by GitHub
parent 132dbecc58
commit ee5479d00e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -14,7 +14,7 @@ export 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: T$$['ctx'], dirty: T$$['dirty']) => void;
/* measure */ r: () => void;
/* fix */ f: () => void;
/* animate */ a: () => void;
@ -24,7 +24,7 @@ export interface Fragment {
}
interface T$$ {
dirty: number[];
ctx: null | any;
ctx: any[];
bound: any;
update: () => void;
callbacks: any;
@ -110,7 +110,7 @@ export function init(component, options, instance, create_fragment, not_equal, p
const $$: T$$ = component.$$ = {
fragment: null,
ctx: null,
ctx: [],
// state
props,

Loading…
Cancel
Save