import { CommandBase } from "../CommandBase"; import { SimpleCommandState } from "../SimpleCommandState"; export class ResourceCommandBase extends CommandBase { public getState(): SimpleCommandState { return new SimpleCommandState(this.isEnabled()); } }