Satisfy svelte_check

This commit is contained in:
Henrik Giesel 2021-03-22 15:41:43 +01:00
parent a418d36c7f
commit 7655f14859
4 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,4 @@
<script lang="typescript">
import { createEventDispatcher } from "svelte";
import type { Writable } from "svelte/store";
import InputBox from "./InputBox.svelte";

View File

@ -10,7 +10,7 @@
let container = (null as unknown) as HTMLDivElement;
let adjustedX, adjustedY: number;
let adjustedX: number, adjustedY: number;
let shiftLeftAmount = 0;
$: shiftLeftAmount = container

View File

@ -1,8 +1,10 @@
<script lang="typescript">
import type { Writable } from "svelte/store";
import useAsync from "sveltelib/async";
import useAsyncReactive from "sveltelib/asyncReactive";
import { getGraphData, RevlogRange, daysToRevlogRange } from "./graph-helpers";
import { getGraphData, daysToRevlogRange } from "./graph-helpers";
import { getPreferences } from "./preferences";
export let search: Writable<string>;

View File

@ -67,6 +67,7 @@ def svelte_check(name = "svelte_check", srcs = []):
],
data = [
"//ts:tsconfig.json",
"//ts/sveltelib",
"//ts/lib",
"//ts/lib:backend_proto",
"@npm//sass",