formatting
parent
d29c6b5d29
commit
bf416266a1
|
|
@ -1,11 +1,18 @@
|
||||||
import sqlite from "better-sqlite3";
|
import sqlite from "better-sqlite3";
|
||||||
|
|
||||||
import {
|
import {
|
||||||
lotOccupancyDB as databasePath
|
lotOccupancyDB as databasePath
|
||||||
} from "../../data/databasePaths.js";
|
} from "../../data/databasePaths.js";
|
||||||
|
|
||||||
|
import {
|
||||||
|
getLotComments
|
||||||
|
} from "./getLotComments.js";
|
||||||
|
|
||||||
|
import {
|
||||||
|
getLotOccupancies
|
||||||
|
} from "./getLotOccupancies.js";
|
||||||
|
|
||||||
import type * as recordTypes from "../../types/recordTypes";
|
import type * as recordTypes from "../../types/recordTypes";
|
||||||
import { getLotComments } from "./getLotComments.js";
|
|
||||||
import { getLotOccupancies } from "./getLotOccupancies.js";
|
|
||||||
|
|
||||||
|
|
||||||
export const getLot = (lotId: number | string): recordTypes.Lot => {
|
export const getLot = (lotId: number | string): recordTypes.Lot => {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue