import { Model } from "sequelize"; export interface Job { id?: number; ownerId: number; createdAt?: Date; updatedAt?: Date; name: string; repoUrl: string; repoUsername: string; repoPassword: string; workspaceDir: string; configFilename: string; } export declare class JobModel extends Model implements Job { id?: number; ownerId: number; createdAt?: Date; updatedAt?: Date; name: string; repoUrl: string; repoUsername: string; repoPassword: string; workspaceDir: string; configFilename: string; }