/**
 * Represents the common response from all commands.
 * @interface
 */
export interface ICommonResponse {
    /**
     * The duration of the request.
     */
    duration: number;
}
