* Hello World binding to serve as an explanatory example. DO NOT USE
| 7219 | * Hello World binding to serve as an explanatory example. DO NOT USE |
| 7220 | */ |
| 7221 | interface HelloWorldBinding { |
| 7222 | /** |
| 7223 | * Retrieve the current stored value |
| 7224 | */ |
| 7225 | get(): Promise<{ |
| 7226 | value: string |
| 7227 | ms?: number |
| 7228 | }> |
| 7229 | /** |
| 7230 | * Set a new stored value |
| 7231 | */ |
| 7232 | set(value: string): Promise<void> |
| 7233 | } |
| 7234 | interface Hyperdrive { |
| 7235 | /** |
| 7236 | * Connect directly to Hyperdrive as if it's your database, returning a TCP socket. |
no outgoing calls
no test coverage detected
searching dependent graphs…