fix: lint

This commit is contained in:
2024-07-06 21:26:38 +02:00
parent 96f7c2cfe7
commit 97144fe45a
5 changed files with 9 additions and 9 deletions

View File

@@ -2,7 +2,7 @@ import delay from "delay";
import getPort from "port";
import psql, { type Sql } from "postgres";
import { Container } from "../docker/libraries/container.ts";
import type { Container } from "../docker/libraries/container.ts";
import { docker } from "../docker/mod.ts";
export class PostgresTestContainer {
@@ -33,7 +33,7 @@ export class PostgresTestContainer {
/**
* Execute a command in the Postgres container.
*/
get exec() {
get exec(): typeof this.container.exec {
return this.container.exec.bind(this.container);
}