Update Component.ts

pull/5830/head
pushkin 6 years ago committed by GitHub
parent 6aaa105093
commit 7db7636215
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,18 +5,18 @@ import { children, detach } from './dom';
import { transition_in } from './transitions'; import { transition_in } from './transitions';
interface Fragment { interface Fragment {
key: string|null; key?: string|null;
first: null; first?: null;
/* create */ c: () => void; /* create */ c: () => void;
/* claim */ l: (nodes: any) => void; /* claim */ l?: (nodes: any) => void;
/* hydrate */ h: () => void; /* hydrate */ h?: () => void;
/* mount */ m: (target: HTMLElement, anchor: any) => 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; /* measure */ r?: () => void;
/* fix */ f: () => void; /* fix */ f?: () => void;
/* animate */ a: () => void; /* animate */ a?: () => void;
/* intro */ i: (local: any) => void; /* intro */ i?: (local: any) => void;
/* outro */ o: (local: any) => void; /* outro */ o?: (local: any) => void;
/* destroy */ d: (detaching: 0|1) => void; /* destroy */ d: (detaching: 0|1) => void;
} }
interface T$$ { interface T$$ {

Loading…
Cancel
Save