Skip to content

Commit

Permalink
chore(api): generate types
Browse files Browse the repository at this point in the history
  • Loading branch information
jwerle committed Apr 23, 2024
1 parent febba1a commit f78d284
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion api/index.d.ts
Expand Up @@ -15831,7 +15831,14 @@ declare module "socket:npm/module" {
}

declare module "socket:npm/service-worker" {
export function onRequest(request: any, env: any, ctx: any): Promise<Response>;
/**
* @ignore
* @param {Request}
* @param {object} env
* @param {import('../service-worker/context.js').Context} ctx
* @return {Promise<Response|null>}
*/
export function onRequest(request: any, env: object, ctx: import("socket:service-worker/context").Context): Promise<Response | null>;
/**
* Handles incoming 'npm://<module_name>/<pathspec...>' requests.
* @param {Request} request
Expand Down

0 comments on commit f78d284

Please sign in to comment.