Skip to content

Commit e33eeee

Browse files
author
Your Name
committed
typescript course ongoing
1 parent f6758e7 commit e33eeee

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
},
2525
"homepage": "https://github.com/angular-university/complete-typescript-course#readme",
2626
"devDependencies": {
27+
"@types/bluebird": "^3.0.35",
2728
"@types/es6-promise": "0.0.32",
2829
"@types/express": "^4.0.33",
2930
"@types/lodash": "^4.14.37",

server/queries/findAllCourses.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import {CourseModel} from "../model/model";
44
import {CourseSummary, createCourseSummary, createCourseSummaries} from "../../shared/model/course-summary";
5-
import Bluebird = require("bluebird");
5+
import * as Bluebird from "bluebird";
66

77

88
export function findAllCourses() : Bluebird<CourseSummary[]> {

0 commit comments

Comments
 (0)