mirror of
https://github.com/BorysLevytskyi/BitwiseCmd.git
synced 2026-01-30 07:34:47 +01:00
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:
9
src/models/StringResult.ts
Normal file
9
src/models/StringResult.ts
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user