add pegjs.d.ts

This commit is contained in:
vvakame
2014-04-04 12:26:32 +09:00
parent 1f368c4187
commit e4cafe56f0
3 changed files with 25 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
// Type definitions for PEG.js
// Project: http://pegjs.majda.cz/
// Definitions by: vvakame <https://github.com/vvakame>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module PEG {
function parse(input:string):any;
class SyntaxError {
line:number;
column:number;
offset:number;
expected:any[];
found:any;
name:string;
message:string;
}
}