6 lines
152 B
TypeScript
6 lines
152 B
TypeScript
export default class CommandLine {
|
|
private constructor() {
|
|
throw new Error('[CommandLine] is a static class that may not be instantiated');
|
|
}
|
|
}
|