@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
15 lines • 540 B
TypeScript
/**
* Special description that doesn't record anything
*/
export class NullDescription extends Description {
appendText(text: any): this;
appendList(start: any, separator: any, end: any, values: any): this;
appendValueList(start: any, separator: any, end: any, values: any): this;
appendValue(value: any): this;
appendDescriptionOf(value: any): this;
}
export namespace NullDescription {
let INSTANCE: NullDescription;
}
import { Description } from "./Description.js";
//# sourceMappingURL=NullDescription.d.ts.map