👕 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

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';