8 lines
168 B
TypeScript
8 lines
168 B
TypeScript
import { CommandType } from "../types/commandTypes";
|
|
|
|
export class Command {
|
|
constructor(commandOptions: CommandType) {
|
|
Object.assign(this, commandOptions)
|
|
}
|
|
}
|