Skip to content

Commit 392f177

Browse files
authoredSep 22, 2023
feat: publish Config type (#423)
Adds the `Config` type for the v2 API.
1 parent ad630c0 commit 392f177

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed
 

‎src/function/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ export { HandlerContext } from './handler_context.js'
22
export { HandlerEvent } from './handler_event.js'
33
export { BuilderHandler, Handler, BackgroundHandler, HandlerCallback, StreamingHandler } from './handler.js'
44
export { BuilderResponse, HandlerResponse, StreamingResponse } from './handler_response.js'
5-
export { Context } from './v2.js'
5+
export { Context, Config } from './v2.js'

‎src/function/v2.ts

+12
Original file line numberDiff line numberDiff line change
@@ -1 +1,13 @@
11
export type { Context } from '@netlify/serverless-functions-api'
2+
3+
type Path = `/${string}`
4+
5+
type HTTPMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'OPTIONS'
6+
7+
type CronSchedule = string
8+
9+
export interface Config {
10+
path?: Path | Path[]
11+
method?: HTTPMethod | HTTPMethod[]
12+
schedule?: CronSchedule
13+
}

0 commit comments

Comments
 (0)
Please sign in to comment.