Skip to content

Commit 0a5d23c

Browse files
committed
fix typescript compilation error
1 parent a2808fd commit 0a5d23c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

api/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import httpModule = require('http');
22
import httpsModule = require('https');
33

4-
import { ClientResponse } from 'http';
4+
//import { ClientResponse } from 'http';
55

66
export class AtelierAPI {
77
private http;
@@ -53,7 +53,7 @@ export class AtelierAPI {
5353
headers,
5454
body
5555
},
56-
(response: ClientResponse) => {
56+
( response: any ) => {
5757
if (response.statusCode < 200 || response.statusCode > 299) {
5858
reject(new Error('Failed to load page "' + path + '", status code: ' + response.statusCode));
5959
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vscode-cos",
3-
"displayName": "Caché ObjectScript",
4-
"description": "Caché ObjectScript language support for Visual Studio Code",
3+
"displayName": "Cach� ObjectScript",
4+
"description": "Cach� ObjectScript language support for Visual Studio Code",
55
"version": "0.6.0",
66
"icon": "images/logo.png",
77
"categories": [

0 commit comments

Comments
 (0)