mirror of
https://github.com/better-auth/better-auth.git
synced 2026-07-31 20:05:38 -05:00
14 lines
267 B
TypeScript
14 lines
267 B
TypeScript
declare module "js-beautify" {
|
|
interface JsBeautifyOptions {
|
|
indent_size?: number;
|
|
indent_with_tabs?: boolean;
|
|
brace_style?: string;
|
|
[key: string]: unknown;
|
|
}
|
|
|
|
export function js_beautify(
|
|
sourceText: string,
|
|
options?: JsBeautifyOptions,
|
|
): string;
|
|
}
|