/ts-structure-parser

Structural Parser for Typescript files, provides JSON object with a declarations structures

Primary LanguageTypeScriptOtherNOASSERTION

TypeScript File Parser

Build Status

This repository provides a parser for *.ts files. It parses the structure of a file and provides JSON object that contains its declaration.

Usage

import tsFileStruct = require("ts-file-parser")

var filePath = "./src/typescript-file.ts";
var decls = fs.readFileSync(filePath).toString();
var jsonStructure = tsFileStruct.parseStruct(decls, {}, filePath);