1
0
Fork 0
mirror of synced 2024-07-04 22:11:23 +12:00

Fixing export.

This commit is contained in:
mike12345567 2023-10-26 18:34:21 +01:00
parent d13cc80022
commit e12cef305a
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@ version: "3.8"
services:
db:
container_name: postgres
image: postgres:15
image: postgres:15-bullseye
restart: unless-stopped
environment:
POSTGRES_USER: root

View file

@ -71,7 +71,7 @@ type DefaultUserValues = {
csrfToken: string
}
export interface TableToBuild extends Omit<Table, "sourceId" | "sourceType"> {
interface TableToBuild extends Omit<Table, "sourceId" | "sourceType"> {
sourceId?: string
sourceType?: TableSourceType
}