Add type annotations

This commit is contained in:
Mohamed Hegazy 2015-02-11 19:49:36 -08:00
parent 54f3250cdd
commit 0963644089

View File

@ -35,8 +35,8 @@ module ts.server {
getCurrentDirectory: () => host.getCurrentDirectory(),
readDirectory: (path: string, extension?: string) => [],
getModififedTime: (fileName) => new Date(),
stat: (path, callback) => { throw new Error("Not implemented Yet."); },
getModififedTime: (fileName: string) => new Date(),
stat: (path: string, callback?: (err: any, stats: any) => any) => { throw new Error("Not implemented Yet."); },
}, {
close: () => { },
info: (m) => this.host.log(m),