10 lines
271 B
Svelte
10 lines
271 B
Svelte
<script lang="ts">
|
|
import type { NodeProps } from '$lib/types';
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
interface $$Props extends NodeProps {}
|
|
|
|
// this is a workaround for suppressing the warning about unused props
|
|
$$restProps;
|
|
</script>
|