@eelkevdbos/elysia-basic-auth
Version:
Basic auth for Elysia.js
53 lines (52 loc) • 1.21 kB
TypeScript
import Elysia, { PreContext } from 'elysia';
export type BasicAuthCredentials = {
username: string;
password: string;
};
export type BasicAuthCredentialOptions = {
env: string;
} | {
file: string;
} | BasicAuthCredentials[];
export type BasicAuthOptions = {
enabled: Boolean;
credentials: BasicAuthCredentialOptions;
header: string;
realm: string;
unauthorizedMessage: string;
unauthorizedStatus: number;
scope: string | string[] | ((ctx: PreContext) => boolean);
skipCorsPreflight: boolean;
};
declare class BasicAuthError extends Error {
readonly message: string;
readonly realm: string;
code: string;
constructor(message: string, realm: string);
}
export declare function basicAuth(userOptions?: Partial<BasicAuthOptions>): Elysia<"", false, {
decorator: {};
store: {
basicAuthRealm: string | null;
basicAuthUser: string | null;
};
derive: {};
resolve: {};
}, {
type: {};
error: {
readonly BASIC_AUTH_ERROR: BasicAuthError;
};
}, {
schema: {};
macro: {};
}, {}, {
derive: {};
resolve: {};
schema: {};
}, {
derive: {};
resolve: {};
schema: {};
}>;
export {};