import { IApiRequest } from './i-api-request.interface';
/**
 * A request that contains the details of the initiating user.
 */
export interface IAuthenticatedRequest extends IApiRequest {
    /**
     * 屪
     */
    readonly __i_authenticated_request__: true;
    /**
     * Gets the username.
     */
    readonly username: string;
}
