DK
Size: a a a
DK
AP
DK
AP
DK
КС
DK
DK
КС
<script lang="ts">—
import { dog } from './dog';
export let one = 1;
export let two = 'haha';
let test = dog(one, one);
</script>
<div>{one}</div>
<div>{two}</div>
<div>{dog(one, one)}</div>
<div>{test}</div>
export const dog: (one: number, two: string) => string = function (
x: number,
y: string
): string {
return `${one} ${two}`;
};
КС
КС
svelte-check found no errors and no warnings
DK
ER
ER
КС
КС
ER
ER
КС
ER