Skip to content

Commit

Permalink
fix: lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
justmoon committed Nov 7, 2023
1 parent 48d9365 commit b8220b5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/app-dev/src/runner/services/trpc-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { createTRPCProxyClient } from "@trpc/client"
import { createWSClient, wsLink } from "@trpc/client/links/wsLink"
import { AxiosError } from "axios"
import superjson, { allowErrorProps, registerClass } from "superjson"
import WebSocket from "ws"
import { WebSocket } from "ws"

import { createActor } from "@dassie/lib-reactive"

Expand Down
4 changes: 2 additions & 2 deletions packages/lib-sqlite/src/internal/check-schema.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type Database from "better-sqlite3"
import type SQLite from "better-sqlite3"

import { TableDescription } from "../types/table"

Expand All @@ -21,7 +21,7 @@ interface SqliteColumnSchema {
}

export const checkSchema = (
database: Database.Database,
database: SQLite.Database,
tables: Record<string, TableDescription>,
) => {
const actualTables = Object.fromEntries(
Expand Down

0 comments on commit b8220b5

Please sign in to comment.