Skip to content

v0.2.0

Latest
Compare
Choose a tag to compare
@smelukov smelukov released this 07 Jun 09:54
· 2 commits to master since this release
  • ts: export interfaces and types

Before:

type UnaryOperator = "-"|"+"|"!"|"~"|"typeof"|"void"|"delete";
interface SourceLocation {
    start: Position,
    end: Position,
    source?: string,
}

After:

export type UnaryOperator = "-"|"+"|"!"|"~"|"typeof"|"void"|"delete";
export interface SourceLocation {
    start: Position,
    end: Position,
    source?: string,
}