import { DBPrismaClient } from "./PostgresService"; export default abstract class TableService { declare pg: DBPrismaClient; protected abstract table: string; constructor(pg: DBPrismaClient) { this.pg = pg; } }