import { HttpContext } from "..";
/**
 * Interface for implementation of Authorization
 */
export interface IAuthorize {
    /**
     * Method to check authorization of request
     * @param context HttpContext Object
     * @param roles Roles for access of api
     */
    authorize(context: HttpContext, roles: string[]): boolean;
}
