Make API argument required in ConfigEditor

This commit is contained in:
Henrik Giesel 2021-05-27 16:15:41 +02:00
parent c49ad009d0
commit b99b12f157

View file

@ -17,7 +17,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
import type { DeckOptionsState } from "./lib"; import type { DeckOptionsState } from "./lib";
export let state: DeckOptionsState; export let state: DeckOptionsState;
export let options: Record<string, never> | undefined = undefined; export let options: Record<string, never>;
</script> </script>
<Section api={options}> <Section api={options}>