mirror of
https://github.com/BorysLevytskyi/BitwiseCmd.git
synced 2026-01-04 11:02:36 +01:00
* Move BitwiseCmd to typescript * Add serve-build http command * Add Env type * Add CNAME and sitemap.xml files * Add files via upload
9 lines
262 B
TypeScript
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 :(`;
|
|
}
|
|
} |