constructor()

in src/api/websites/models.ts [33:37]


  constructor(public url: string, public audits: Audit[]) {
    if (audits.length === 0) {
      throw new Error('Website should not be constructed with no audits! ');
    }
  }