We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5a23ea commit 51b24b9Copy full SHA for 51b24b9
packages/svelte/src/devtool/DevTool.svelte.d.ts
@@ -0,0 +1,2 @@
1
+// i'm here so type generation doesn't get mad
2
+// TODO do we need to type this?
packages/svelte/types/index.d.ts
@@ -2548,6 +2548,17 @@ declare module 'svelte/events' {
2548
export {};
2549
}
2550
2551
+declare module 'svelte/devtool' {
2552
+ export interface Config {
2553
+ position: 'top'|'bottom'
2554
+ }
2555
+ export function configure(options: Partial<Config>): void;
2556
+
2557
+ export function getConfig(): Config;
2558
2559
+ export {};
2560
+}
2561
2562
declare module 'svelte/types/compiler/preprocess' {
2563
/** @deprecated import this from 'svelte/preprocess' instead */
2564
export type MarkupPreprocessor = MarkupPreprocessor_1;
0 commit comments