There was an error while loading. Please reload this page.
1 parent 9387720 commit 0e71491Copy full SHA for 0e71491
package.json
@@ -7,7 +7,7 @@
7
},
8
"repository": "GoogleCloudPlatform/functions-framework-nodejs",
9
"main": "build/src/index.js",
10
- "types": "build/src/invoker.d.ts",
+ "types": "build/src/functions.d.ts",
11
"dependencies": {
12
"body-parser": "^1.18.3",
13
"express": "^4.16.4",
src/functions.ts
@@ -12,6 +12,9 @@
// See the License for the specific language governing permissions and
// limitations under the License.
14
15
+// Type Interfaces for the Node Functions Framework.
16
+// **If changing files, please change package.json!**
17
+
18
/* eslint-disable @typescript-eslint/no-explicit-any */
19
import * as express from 'express';
20
0 commit comments