import { RequestContext } from "../api";
export interface Authentication {
    pre?: (context: RequestContext) => Promise<void>;
}
