chore: fix linting

This commit is contained in:
jslno
2025-11-03 12:27:46 +01:00
parent dbb741b6a5
commit f1868f760e

View File

@@ -81,10 +81,12 @@ export interface BetterAuthClientPlugin {
* State atoms that'll be resolved by each framework
* auth store.
*/
getAtoms?: ((
$fetch: BetterFetch,
options?: BetterAuthClientOptions | undefined,
) => Record<string, Atom<any>>) | undefined;
getAtoms?:
| ((
$fetch: BetterFetch,
options?: BetterAuthClientOptions | undefined,
) => Record<string, Atom<any>>)
| undefined;
/**
* specify path methods for server plugin inferred
* endpoints to force a specific method.
@@ -102,5 +104,5 @@ export interface BetterAuthClientPlugin {
atomListeners?:
| ClientAtomListener[]
| (() => ClientAtomListener[] | undefined)
| undefined;
| undefined;
}