event-local
Version:
Event client
14 lines (13 loc) • 431 B
TypeScript
import { Command } from "../Command";
import { TestDetail } from "./Test";
export default class TestCommand extends Command {
}
export declare class CreateTest extends TestCommand {
constructor(testDetail: TestDetail);
}
export declare class RenameTest extends TestCommand {
constructor(id: string, name: string);
}
export declare class ChangeStatusTest extends TestCommand {
constructor(id: string, status: number);
}