-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update types imported from aws-sdk (#555)
* remove types imported from aws-sdk * use types from aws-lite/<plugin>-types * correct tables._client type also arc.ws._api returns client.ApiGatewayManagementApi also remove some old JSDoc since it's mixing with .d.ts in a confusing way for consumers * include types test in main test command
- Loading branch information
Showing
11 changed files
with
53 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ coverage/ | |
dist.js | ||
scratch/ | ||
src/http/get-index | ||
types/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
/// <reference types="node" /> | ||
|
||
import { ArcEvents, ArcQueues } from "./events"; | ||
import { ArcHTTP, HttpHandler, HttpAsyncHandler } from "./http"; | ||
import { ArcStatic } from "./static"; | ||
import { ArcWebSocket } from "./ws"; | ||
import { ArcEvents, ArcQueues } from "./events"; | ||
import { ArcTables } from "./tables"; | ||
import { ArcWebSocket } from "./ws"; | ||
|
||
export type { HttpHandler, HttpAsyncHandler }; | ||
export type ArcServices = () => Promise<Record<string, any>>; | ||
|
||
export const http: ArcHTTP; | ||
export const static: ArcStatic; | ||
export const ws: ArcWebSocket; | ||
export const services: ArcServices; | ||
export const events: ArcEvents; | ||
export const http: ArcHTTP; | ||
export const queues: ArcQueues; | ||
export const services: ArcServices; | ||
export const static: ArcStatic; | ||
export const tables: ArcTables; | ||
export const ws: ArcWebSocket; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters