We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fca148a commit 78887d5Copy full SHA for 78887d5
docs/rules/no-svelte-internal.md
@@ -28,9 +28,12 @@ This rule reports the use of the deprecated API `svelte/internal` and `svelte/in
28
// ✗ BAD
29
import { get_current_component } from 'svelte/internal';
30
import { inspect } from 'svelte/internal/client';
31
+ import('svelte/internal');
32
+ import('svelte/internal/disclose-version');
33
34
export * from 'svelte/internal';
- export * from 'svelte/internal/client';
35
+ export { listen } from 'svelte/internal';
36
+ export * from 'svelte/internal/server';
37
</script>
38
```
39
0 commit comments