mirror of https://github.com/sveltejs/svelte
parent
ad2aac509d
commit
a7a75cb550
@ -1,19 +1,4 @@
|
|||||||
declare module '*.svelte' {
|
declare module '*.svelte' {
|
||||||
type Props = Record<string, any>;
|
type SvelteComponent = typeof import('./internal/ComponentApi').SvelteComponentApi
|
||||||
|
export default SvelteComponent
|
||||||
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;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,16 @@
|
|||||||
|
type Props = Record<string, any>;
|
||||||
|
export declare class SvelteComponentApi {
|
||||||
|
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;
|
||||||
|
}
|
Loading…
Reference in new issue