Satisfy svelte_check
This commit is contained in:
parent
a418d36c7f
commit
7655f14859
@ -1,5 +1,4 @@
|
|||||||
<script lang="typescript">
|
<script lang="typescript">
|
||||||
import { createEventDispatcher } from "svelte";
|
|
||||||
import type { Writable } from "svelte/store";
|
import type { Writable } from "svelte/store";
|
||||||
|
|
||||||
import InputBox from "./InputBox.svelte";
|
import InputBox from "./InputBox.svelte";
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
let container = (null as unknown) as HTMLDivElement;
|
let container = (null as unknown) as HTMLDivElement;
|
||||||
|
|
||||||
let adjustedX, adjustedY: number;
|
let adjustedX: number, adjustedY: number;
|
||||||
|
|
||||||
let shiftLeftAmount = 0;
|
let shiftLeftAmount = 0;
|
||||||
$: shiftLeftAmount = container
|
$: shiftLeftAmount = container
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
<script lang="typescript">
|
<script lang="typescript">
|
||||||
|
import type { Writable } from "svelte/store";
|
||||||
|
|
||||||
import useAsync from "sveltelib/async";
|
import useAsync from "sveltelib/async";
|
||||||
import useAsyncReactive from "sveltelib/asyncReactive";
|
import useAsyncReactive from "sveltelib/asyncReactive";
|
||||||
|
|
||||||
import { getGraphData, RevlogRange, daysToRevlogRange } from "./graph-helpers";
|
import { getGraphData, daysToRevlogRange } from "./graph-helpers";
|
||||||
import { getPreferences } from "./preferences";
|
import { getPreferences } from "./preferences";
|
||||||
|
|
||||||
export let search: Writable<string>;
|
export let search: Writable<string>;
|
||||||
|
@ -67,6 +67,7 @@ def svelte_check(name = "svelte_check", srcs = []):
|
|||||||
],
|
],
|
||||||
data = [
|
data = [
|
||||||
"//ts:tsconfig.json",
|
"//ts:tsconfig.json",
|
||||||
|
"//ts/sveltelib",
|
||||||
"//ts/lib",
|
"//ts/lib",
|
||||||
"//ts/lib:backend_proto",
|
"//ts/lib:backend_proto",
|
||||||
"@npm//sass",
|
"@npm//sass",
|
||||||
|
Loading…
Reference in New Issue
Block a user