##// END OF EJS Templates
working on di decorators
working on di decorators

File last commit:

r82:025f02eff3b2 v1.3.0 default
r109:f71c50acc9f9 ioc ts support
Show More
NullTextWriter.ts
19 lines | 433 B | video/mp2t | TypeScriptLexer
/ src / main / ts / text / NullTextWriter.ts
import { TextWriter } from "../interfaces";
export class NullTextWriter implements TextWriter {
static readonly instance = new NullTextWriter();
write(obj: any): void;
write(format: string, ...args: any[]): void;
write() {
}
writeLine(obj: any): void;
writeLine(format: string, ...args: any[]): void;
writeLine() {
}
writeValue(value: any, spec?: string): void;
writeValue() {
}
}