Files
DefinitelyTyped/luaparse/luaparse.d.ts
2015-07-14 20:17:45 +01:00

9 lines
309 B
TypeScript

// Type definitions for luaparse
// Project: https://github.com/oxyc/luaparse
// Definitions by: Sam Saint-Pettersen <https://github.com/stpettersens>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module "luaparse" {
export function parse(code: string, options?: Object): Object;
}