Skip to content

Commit a5b7014

Browse files
committed
add manual DevTool component type
1 parent 51b24b9 commit a5b7014

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed
Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
11
// i'm here so type generation doesn't get mad
2-
// TODO do we need to type this?
2+
// TODO generate this file during type generation
3+
export default DevTool;
4+
type DevTool = {
5+
$on?(type: string, callback: (e: any) => void): () => void;
6+
$set?(props: $$ComponentProps): void;
7+
};
8+
declare const DevTool: import("svelte").Component<$$ComponentProps, {}, "">;
9+

0 commit comments

Comments
 (0)