UNPKG

aegis-auth

Version:

A credentials-based auth solution for Next.js (and other Node projects) with IP rate-limiting, account lockouts, and sessions in DB.

14 lines 502 B
import type { TypedArray } from "../types"; export declare const base64: { encode(data: ArrayBuffer | TypedArray | string, options?: { padding?: boolean; }): string; decode(data: string | ArrayBuffer | TypedArray): Uint8Array<ArrayBufferLike>; }; export declare const base64Url: { encode(data: ArrayBuffer | TypedArray | string, options?: { padding?: boolean; }): string; decode(data: string): Uint8Array<ArrayBufferLike>; }; //# sourceMappingURL=base64.d.ts.map