| 8 | * Grant options |
| 9 | */ |
| 10 | export interface GrantOptions { |
| 11 | /** |
| 12 | * Handler name |
| 13 | */ |
| 14 | handler?: 'express' | 'koa' | 'hapi' | 'fastify' | 'curveball' | |
| 15 | 'node' | 'aws' | 'azure' | 'gcloud' | 'vercel' |
| 16 | /** |
| 17 | * Grant configuration |
| 18 | */ |
| 19 | config?: GrantConfig |
| 20 | /** |
| 21 | * HTTP client options |
| 22 | */ |
| 23 | request?: RequestComposeOptions |
| 24 | /** |
| 25 | * Grant session options |
| 26 | */ |
| 27 | session?: GrantSessionConfig |
| 28 | // exclude |
| 29 | defaults?: never |
| 30 | } |
| 31 | |
| 32 | /** |
| 33 | * Grant config |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…