mirror of
https://github.com/BorysLevytskyi/BitwiseCmd.git
synced 2025-12-10 15:02:07 +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
228 B
TypeScript
9 lines
228 B
TypeScript
import CommandResult from './CommandResult';
|
|
|
|
export default class StringResult extends CommandResult {
|
|
value:string;
|
|
constructor(input: string, value : string) {
|
|
super(input);
|
|
this.value = value;
|
|
}
|
|
} |