Skip to content

Commit

Permalink
Fixed the small typing error in boilerplate file (#269)
Browse files Browse the repository at this point in the history
* fix: fixed the typing in boilerplate file

* Create many-lemons-argue.md
  • Loading branch information
alireza-sheikholmolouki authored Oct 28, 2024
1 parent 8888163 commit 3e8cace
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/many-lemons-argue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@mirohq/cloud-data-import": patch
---

Fixed the small typing error in boilerplate file
4 changes: 2 additions & 2 deletions src/scanners/scan-functions/aws/_boilerplate.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {DBInstance} from '@aws-sdk/client-rds'
import {AwsAwsCredentials, AwsResources, RateLimiter} from '@/types'
import {AwsCredentials, AwsResources, RateLimiter} from '@/types'
import {AwsServices} from '@/constants'

/**
Expand All @@ -10,7 +10,7 @@ import {AwsServices} from '@/constants'
type SampleInstance = DBInstance

export async function getSampleInstances(
credentials: AwsAwsCredentials,
credentials: AwsCredentials,
rateLimiter: RateLimiter,
region: string,
): Promise<AwsResources<AwsServices.DYNAMODB_TABLES>> {
Expand Down

0 comments on commit 3e8cace

Please sign in to comment.