/opt/canhelp/node_modules/@better-auth/utils/dist
Edit: /opt/canhelp/node_modules/@better-auth/utils/dist/base64.d.ts (494B)
import { T as TypedArray } from './shared/utils.ecd028f7.js';
declare const base64: {
encode(data: ArrayBuffer | TypedArray | string, options?: {
padding?: boolean;
}): string;
decode(data: string | ArrayBuffer | TypedArray): Uint8Array
;
};
declare const base64Url: {
encode(data: ArrayBuffer | TypedArray | string, options?: {
padding?: boolean;
}): string;
decode(data: string): Uint8Array;
};
export { base64, base64Url };