import ClientCommand from "./ClientCommand"; /** * The command that describes the engine identity. */ export default class IdCommand extends ClientCommand { /** The identity kind. */ readonly kind: "name" | "author"; /** The identity value. */ readonly value: string; constructor( /** The identity kind. */ kind: "name" | "author", /** The identity value. */ value: string); }