Skip to content

Commit

Permalink
chore: standardize typings style
Browse files Browse the repository at this point in the history
  • Loading branch information
wellwelwel committed Jul 15, 2024
1 parent 0a4b0be commit 05b0361
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
11 changes: 10 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,14 @@
"htmlWhitespaceSensitivity": "css",
"endOfLine": "auto",
"embeddedLanguageFormatting": "auto",
"singleAttributePerLine": false
"singleAttributePerLine": false,
"overrides": [
{
"files": ["src/**/*.d.ts"],
"options": {
"singleQuote": false,
"tabWidth": 4
}
}
]
}
8 changes: 4 additions & 4 deletions src/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import type { Profiles } from './@types/profiles.js';
import type { Profiles } from "./@types/profiles.js";
export declare const proxyBundle: Profiles;
declare const profiles: Profiles;
declare module 'aws-ssl-profiles' {
export = profiles;
export const proxyBundle: Profiles;
declare module "aws-ssl-profiles" {
export = profiles;
export const proxyBundle: Profiles;
}
export default profiles;

0 comments on commit 05b0361

Please sign in to comment.