##// END OF EJS Templates
created typings for basic part of dojo and dijit further work is required to...
created typings for basic part of dojo and dijit further work is required to complete typings and separate them from this project dojo-typings replaced with @type/dojo, @type/dijit.

File last commit:

r1:b6ccfccf314f default
r2:8ec37bf1b4d1 default
Show More
TextTapWriter.ts
17 lines | 372 B | video/mp2t | TypeScriptLexer
/ src / test / ts / TextTapWriter.ts
import { AbstractTapWriter } from "./Tap";
import { TextWriter } from "@implab/core-amd/interfaces";
export class TextTapWriter extends AbstractTapWriter {
private readonly _writer: TextWriter;
constructor(writer: TextWriter) {
super();
this._writer = writer;
}
_writeLine(text: string) {
this._writer.writeLine(text);
}
}