| 550 | namespace CosmosAsync { |
| 551 | type Method = "DELETE" | "GET" | "HEAD" | "PATCH" | "POST" | "PUT" | "SUB"; |
| 552 | interface Error { |
| 553 | code: number; |
| 554 | error: string; |
| 555 | message: string; |
| 556 | stack?: string; |
| 557 | } |
| 558 | |
| 559 | type Headers = Record<string, string>; |
| 560 | type Body = Record<string, any>; |
nothing calls this directly
no outgoing calls
no test coverage detected