Skip to content

Commit 88e3e7b

Browse files
authoredOct 5, 2023
feat: add ambient type declarations for Netlify.env (#428)
🎉 Thanks for sending this pull request! 🎉 Please make sure the title is clear and descriptive. If you are fixing a typo or documentation, please skip these instructions. Otherwise please fill in the sections below. **Which problem is this pull request solving?** Example: I'm always frustrated when [...] **List other issues or pull requests related to this problem** Example: This fixes #5012 **Describe the solution you've chosen** Example: I've fixed this by [...] **Describe alternatives you've considered** Example: Another solution would be [...] **Checklist** Please add a `x` inside each checkbox: - [ ] I have read the [contribution guidelines](../blob/master/CONTRIBUTING.md). - [ ] The status checks are successful (continuous integration). Those can be seen below.
1 parent 3270f5f commit 88e3e7b

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed
 

‎package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"description": "JavaScript utilities for Netlify Functions",
77
"files": [
88
"dist/**/*.js",
9-
"dist/**/*.d.ts"
9+
"dist/**/*.d.ts",
10+
"types/**/*.d.ts"
1011
],
1112
"scripts": {
1213
"build": "tsc",

‎types/index.d.ts

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import type { getNetlifyGlobal } from '@netlify/serverless-functions-api'
2+
3+
// Ambient type declarations
4+
declare global {
5+
const Netlify: ReturnType<typeof getNetlifyGlobal>
6+
}

0 commit comments

Comments
 (0)