import { Model } from 'sequelize-typescript'; import dfw_access from './dfw_access.model'; export default class dfw_credential extends Model { id: number; name: string; description: string; created_at: Date; updated_at: Date; access: dfw_access[]; checkAccess(access: string | string[] | number | number[] | dfw_access | dfw_access[]): Promise; }