chore: fix TS types (#21)

* chore: fix TS types

* build: add types-check CI job

* style: apply TS style fixes
This commit is contained in:
Mazen Touati
2025-11-18 19:29:37 +01:00
committed by GitHub
parent ed5dfa4664
commit 65d2a240b5
12 changed files with 99 additions and 31 deletions

View File

@@ -60,10 +60,10 @@ describe('generateCurlCommand', () => {
});
it('flags special authorization types', () => {
const request = {
const request: PendingRequest = {
...requestBase,
authorization: { type: AuthorizationType.Impersonate, value: 1 },
};
} as PendingRequest;
const { hasSpecialAuth } = generateCurlCommand(
request,