Files
BitwiseCmd/src/models/UnknownCommandResult.ts
Borys Levytskyi 271c58a980 Migrate to typescript (#14)
* Move BitwiseCmd to typescript

* Add serve-build http command

* Add Env type

* Add CNAME and sitemap.xml files

* Add files via upload
2021-01-12 16:41:03 +02:00

9 lines
262 B
TypeScript

import CommandResult from './CommandResult';
export default class UnknownCommandResult extends CommandResult {
message:string;
constructor(input : string) {
super(input);
this.message = `Sorry, i don''t know what ${input} is :(`;
}
}