👕 Fix lint issue

This commit is contained in:
Michael Kret 2022-06-06 16:34:00 +03:00 committed by GitHub
parent b5535e4a62
commit 73da4c3598
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -114,9 +114,9 @@ export const regions = [
displayName: 'US West',
location: 'Oregon',
},
] as const
] as const;
export type AWSRegion = typeof regions[number]['name']
export type AWSRegion = typeof regions[number]['name'];
export class Aws implements ICredentialType {
name = 'aws';