Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
NorthernMan54 committed Nov 14, 2023
1 parent 0ab63fe commit 29dafd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/server/server.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ export class HomebridgeMdnsSettingDto {
@IsDefined()
@IsIn(['avahi', 'resolved', 'ciao', 'bonjour-hap'])
@ApiProperty()
advertiser: 'avahi' | 'resolved' | 'ciao' | 'bonjour-hap';
advertiser: 'avahi' | 'resolved' | 'ciao' | 'bonjour-hap';
}

export class HomebridgeNetworkInterfacesDto {
@IsArray()
@IsString({ each: true })
@ApiProperty()
adapters: string[];
adapters: string[];
}

0 comments on commit 29dafd9

Please sign in to comment.