lint typescript-eslint/prefer-enum-initializers

This commit is contained in:
Eugene Pankov
2020-12-24 18:59:33 +01:00
parent aacc603309
commit e98c12d409
4 changed files with 7 additions and 4 deletions

View File

@@ -45,7 +45,9 @@ export interface SSHConnection {
}
export enum PortForwardType {
Local, Remote, Dynamic,
Local = 'Local',
Remote = 'Remote',
Dynamic = 'Dynamic',
}
export class ForwardedPort {