better-auth
Version:
The most comprehensive authentication framework for TypeScript.
21 lines (19 loc) • 747 B
JavaScript
import { getGlobalBroadcastChannel, kBroadcastChannel } from "./broadcast-channel.mjs";
import { kFocusManager } from "./focus-manager.mjs";
import { kOnlineManager } from "./online-manager.mjs";
import { useAuthQuery } from "./query.mjs";
import { createSessionRefreshManager } from "./session-refresh.mjs";
import { createAuthClient } from "./vanilla.mjs";
//#region src/client/index.ts
const InferPlugin = () => {
return {
id: "infer-server-plugin",
$InferServerPlugin: {}
};
};
function InferAuth() {
return {};
}
//#endregion
export { InferAuth, InferPlugin, createAuthClient, createSessionRefreshManager, getGlobalBroadcastChannel, kBroadcastChannel, kFocusManager, kOnlineManager, useAuthQuery };
//# sourceMappingURL=index.mjs.map