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
This commit is contained in:
Borys Levytskyi
2021-01-12 16:41:03 +02:00
committed by GitHub
parent 83f49d258a
commit 271c58a980
91 changed files with 15026 additions and 1919 deletions

View File

@@ -0,0 +1,9 @@
import CommandResult from './CommandResult';
export default class StringResult extends CommandResult {
value:string;
constructor(input: string, value : string) {
super(input);
this.value = value;
}
}