hypnagaga/src/components/PymChild/PymChild.svelte
2022-08-28 10:16:15 +01:00

15 lines
No EOL
407 B
Svelte

<!-- @component `PymChild` [Read the docs.](https://reuters-graphics.github.io/graphics-components/?path=/docs/utilities-PymChild--default) -->
<script lang="ts">
/** Pym.js polling interval */
export let polling: number = 500;
import { onMount } from 'svelte';
import pym from 'pym.js';
// @ts-ignore
let pymChild;
onMount(() => {
pymChild = new pym.Child({ polling });
});
</script>