Skip to content

Commit 78887d5

Browse files
committed
update docs
1 parent fca148a commit 78887d5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

docs/rules/no-svelte-internal.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,12 @@ This rule reports the use of the deprecated API `svelte/internal` and `svelte/in
2828
// ✗ BAD
2929
import { get_current_component } from 'svelte/internal';
3030
import { inspect } from 'svelte/internal/client';
31+
import('svelte/internal');
32+
import('svelte/internal/disclose-version');
3133
3234
export * from 'svelte/internal';
33-
export * from 'svelte/internal/client';
35+
export { listen } from 'svelte/internal';
36+
export * from 'svelte/internal/server';
3437
</script>
3538
```
3639

0 commit comments

Comments
 (0)