Update Component.ts

pull/5830/head
pushkin 5 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';
interface Fragment {
key: string|null;
first: null;
key?: string|null;
first?: null;
/* create */ c: () => void;
/* claim */ l: (nodes: any) => void;
/* hydrate */ h: () => void;
/* claim */ l?: (nodes: any) => void;
/* hydrate */ h?: () => void;
/* mount */ m: (target: HTMLElement, anchor: any) => void;
/* update */ p: (ctx: any, dirty: any) => void;
/* measure */ r: () => void;
/* fix */ f: () => void;
/* animate */ a: () => void;
/* intro */ i: (local: any) => void;
/* outro */ o: (local: any) => void;
/* update */ p?: (ctx: any, dirty: any) => void;
/* measure */ r?: () => void;
/* fix */ f?: () => void;
/* animate */ a?: () => void;
/* intro */ i?: (local: any) => void;
/* outro */ o?: (local: any) => void;
/* destroy */ d: (detaching: 0|1) => void;
}
interface T$$ {

Loading…
Cancel
Save