mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-09 02:30:15 -06:00
29 lines
1.2 KiB
TypeScript
29 lines
1.2 KiB
TypeScript
/// <reference path="../lib/typescript.d.ts" />
|
|
import { SourceFile, Node, Map, Symbol } from "typescript";
|
|
|
|
export * from "typescript";
|
|
|
|
export interface EmitTextWriter {
|
|
write(s: string): void;
|
|
writeTextOfNode(sourceFile: SourceFile, node: Node): void;
|
|
writeLine(): void;
|
|
increaseIndent(): void;
|
|
decreaseIndent(): void;
|
|
getText(): string;
|
|
rawWrite(s: string): void;
|
|
writeLiteral(s: string): void;
|
|
getTextPos(): number;
|
|
getLine(): number;
|
|
getColumn(): number;
|
|
getIndent(): number;
|
|
}
|
|
|
|
export declare function computeLineStarts(text: string): number[];
|
|
export declare function createTextWriter(newLine: String): EmitTextWriter;
|
|
export declare function getSourceTextOfNodeFromSourceFile(sourceFile: SourceFile, node: Node): string;
|
|
export declare function combinePaths(path1: string, path2: string): string;
|
|
export declare function map<T, U>(array: T[], f: (x: T) => U): U[];
|
|
export declare function hasProperty<T>(map: Map<T>, key: string): boolean;
|
|
export declare function getProperty<T>(map: Map<T>, key: string): T;
|
|
export declare function getNodeId(node: Node): number;
|
|
export declare function getSymbolId(symbol: Symbol): number; |