Merge branch 'master' of github.com:sveltejs/svelte

pull/3030/head
Richard Harris 5 years ago
commit 71c0955ad0

@ -0,0 +1,19 @@
declare module '*.svelte' {
type Props = Record<string, any>;
export default class {
constructor(options: {
target: Element;
anchor?: Element;
props?: Props;
hydrate?: boolean;
intro?: boolean;
});
$set(props: Props): void;
$on<T = any>(event: string, callback: (event: CustomEvent<T>) => void): () => void;
$destroy(): void;
[accessor: string]: any;
}
}

@ -1,3 +1,5 @@
import './ambient';
export {
onMount,
onDestroy,

Loading…
Cancel
Save