removed unused vars + depress [any] type check

This commit is contained in:
shimon
2023-04-19 17:32:38 +03:00
parent 2b83ac37a0
commit f58780f30a
2 changed files with 3 additions and 4 deletions
+2 -3
View File
@@ -13,9 +13,8 @@
<script lang="ts">
import { Container } from '$lib/layout';
import { BarChart, LineChart } from '$lib/charts';
import { Card, SecondaryTabs, SecondaryTabsItem, Heading, Tiles } from '$lib/components';
import { Colors } from '$lib/charts/config';
import { BarChart } from '$lib/charts';
import { Card, SecondaryTabs, SecondaryTabsItem, Heading } from '$lib/components';
import type { Models } from '@aw-labs/appwrite-console';
import { page } from '$app/stores';
+1 -1
View File
@@ -1,7 +1,7 @@
import type { Client, Models } from '@aw-labs/appwrite-console';
type Payload = {
[key: string]: any;
[key: string]: any /* eslint-disable @typescript-eslint/no-explicit-any */;
};
class Service {