readts
readts copied to clipboard
TypeScript exported definitions parser
readts
This is a TypeScript exported class, function, type and documentation parser. It outputs everything needed to automatically generate documentation and better understand a project's public API. Information is extracted using TypeScript's Compiler API.
Usage
import * as readts from 'readts';
var parser = new readts.Parser();
// Read configuration used in the project we want to analyze.
var config = parser.parseConfig('tsconfig.json');
// Modify configuration as needed, for example to avoid writing compiler output to disk.
config.options.noEmit = true;
// Parse the project.
var tree = parser.parse(config);
The output is a list of ModuleSpec objects, each with exported classes and interfaces (ClassSpec),
functions (FunctionSpec) and variables (IdentifierSpec).
Types of variables and function parameters are parsed to TypeSpec objects,
pointing to correct ClassSpec objects if applicable.
This allows cross-linking types to their definitions in generated documentation.
See charto/docts for a documentation generator using this parser.
API
Docs generated using docts
Class
ClassSpecClass or interface and its members.
Source code:<>Methods:
new( ) ⇒
ClassSpec<>
▪ specSymbolSpecProperties:
.name
string
Class name.
.posSourcePos
.construct
FunctionSpec
Constructor function.
.indexIndexSpec
Index signature.
.methodListFunctionSpec[]
Public methods.
.propertyListIdentifierSpec[]
Public properties.
.extendListClassSpec[]
Class extends
.exportsModuleSpec
Class exports
.docstring
JSDoc comment.
Class
EnumSpecEnum and its members.
Source code:<>Methods:
new( ) ⇒
EnumSpec<>
▪ specSymbolSpec
.addMember( ) ⇒void<>
▪ specIdentifierSpecProperties:
.name
string
Class name.
.posSourcePos
.memberList
IdentifierSpec[]
Public properties.
.docstring
JSDoc comment.
Interface
FormatHooksHooks to change how parts of type definitions are converted to strings.
Source code:<>Properties:
.unknown?
FormatHook
.ref?FormatHook
.array?FormatHook
.union?FormatHook
.intersection?FormatHook
.generic?FormatHook
Class
FunctionSpecFunction or method with any number of overloaded signatures.
Source code:<>Methods:
new( ) ⇒
FunctionSpec<>
▪ specSymbolSpecProperties:
.name
string
Function name.
.signatureListSignatureSpec[]
List of signatures, one for each overload.
Class
IdentifierSpecProperty, function / method parameter or variable.
Source code:<>Properties:
.name
string
Identifier name.
.posSourcePos
.typeTypeSpec
Type definition.
.value?any
Literal type value
.optionalboolean
Interface members and function / method parameters may be optional.
.docstring
JSDoc comment.
Class
IndexSpecIndex signature.
Source code:<>Properties:
.signature
TypeSpec
Singature type.
.valueTypeSpec
Value type
Class
ModuleSpecModule or source file.
Source code:<>Methods:
.isEmpty( ) ⇒
boolean<>
Test if nothing is exported.Properties:
.enumList
EnumSpec[]
Definitions of exported enums.
.classListClassSpec[]
Definitions of exported classes.
.interfaceListClassSpec[]
Definitions of exported interfaces.
.functionListFunctionSpec[]
Definitions of exported functions.
.variableListIdentifierSpec[]
Definitions of exported variables.
Class
ParserMain parser class with public methods, also holding its internal state.
Source code:<>Methods:
.parseConfig( ) ⇒
ParsedCommandLine<>
Parse a tsconfig.json file using TypeScript services API.
▪ tsconfigPathstring
.parse( ) ⇒ModuleSpec[]<>
Parse a TypeScript project using TypeScript services API and configuration.
▪ configParsedCommandLine
▫ nameFilter?(pathName: string) => boolean
▫ extension?string
Interface
RefSpecSource code:
<>Properties:
.name?
string
.symbol?Symbol
.class?ClassSpec
.enum?EnumSpec
Class
SignatureSpecFunction or method signature defining input and output types.
Source code:<>Methods:
new( ) ⇒
SignatureSpec<>
▪ posSourcePos
▪ returnTypeTypeSpec
▪ docstringProperties:
.pos
SourcePos
.paramListIdentifierSpec[]
List of parameters.
.returnTypeTypeSpec
Return type definition.
.docstring
JSDoc comment.
Interface
SourcePosSource code:
<>Properties:
.sourcePath
string
.firstLinenumber
.lastLinenumber
Class
TypeSpecType definition.
Source code:<>Methods:
.format( ) ⇒
string<>
Convert to string, with optional hooks replacing default formatting code.
▫ hooks?FormatHooks
▫ needParens?booleanProperties:
.name
string
Name of the type, only present if not composed of other type or class etc.
.value?string | number
Value of the type, only present if literal type
.refRefSpec
Definition of what the type points to, if available.
.unionOfTypeSpec[]
If the type is a union, list of the possible types.
.intersectionOfTypeSpec[]
If the type is an intersection, list of the possible types.
.arrayOfTypeSpec
If the type is an array, its element type.
.argumentListTypeSpec[]
Arguments of a generic type.
License
Copyright (c) 2016 BusFaster Ltd