mightypanders
66f843b399
All checks were successful
Compile the repository / compile (pull_request) Successful in 1m12s
8 lines
164 B
TypeScript
8 lines
164 B
TypeScript
import { CommandType } from "../types/commandTypes";
|
|
|
|
export class Command {
|
|
constructor(commandOptions: CommandType) {
|
|
Object.assign(this, commandOptions)
|
|
}
|
|
}
|