Skip to content

Commit ca93590

Browse files
committed
style: fix eslint errors
1 parent a69424d commit ca93590

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

src/api/bulkOps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Type, type Static } from '@sinclair/typebox'
2-
import { ValidationError, validatedFetch } from './validatedFetch.js'
2+
import { type ValidationError, validatedFetch } from './validatedFetch.js'
33

44
/**
55
* @link https://api.nrfcloud.com/v1/#tag/Bulk-Ops-Requests/operation/FetchBulkOpsRequest

src/api/devices.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Type, type TSchema, type Static } from '@sinclair/typebox'
22
import { slashless } from './slashless.js'
3-
import { ValidationError, validatedFetch } from './validatedFetch.js'
3+
import { type ValidationError, validatedFetch } from './validatedFetch.js'
44
import { DeviceShadow } from './DeviceShadow.js'
55

66
const Page = <T extends TSchema>(Item: T) =>

src/api/groundFix.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
import { Type, type Static } from '@sinclair/typebox'
77
import {
88
JSONPayload,
9-
ValidationError,
9+
type ValidationError,
1010
validatedFetch,
1111
} from './validatedFetch.js'
1212

src/api/serviceToken.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Type } from '@sinclair/typebox'
2-
import { ValidationError, validatedFetch } from './validatedFetch.js'
2+
import { type ValidationError, validatedFetch } from './validatedFetch.js'
33

44
/**
55
* @link https://api.nrfcloud.com/v1/#tag/Account/operation/GetServiceToken

src/cellGeoLocation/cache.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {
2-
DynamoDBClient,
2+
type DynamoDBClient,
33
GetItemCommand,
44
PutItemCommand,
55
} from '@aws-sdk/client-dynamodb'

src/settings/getAllAccounts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { SSMClient } from '@aws-sdk/client-ssm'
1+
import type { SSMClient } from '@aws-sdk/client-ssm'
22
import { get } from '@bifravst/aws-ssm-settings-helpers'
33
import { NRFCLOUD_ACCOUNT_SCOPE } from './scope.js'
44

src/settings/getAllAccountsSettings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { SSMClient } from '@aws-sdk/client-ssm'
1+
import type { SSMClient } from '@aws-sdk/client-ssm'
22
import { get } from '@bifravst/aws-ssm-settings-helpers'
33
import { NRFCLOUD_ACCOUNT_SCOPE } from './scope.js'
44
import { groupByAccount } from './groupByAccount.js'

0 commit comments

Comments
 (0)