fix: commit vendored @kuns/zitadel-auth dist (was excluded by dist/ gitignore)

This commit is contained in:
2026-06-10 08:22:38 +00:00
parent 7331fe75e8
commit ab2f9affd1
24 changed files with 1707 additions and 1 deletions

13
vendor/zitadel-auth/dist/svelte.d.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
import { ZitadelAuth } from './index.js';
import { Z as ZitadelAuthConfig, A as AuthState } from './types-C5b7Bv-t.js';
interface ZitadelSvelteAuth {
subscribe: (cb: (state: AuthState) => void) => () => void;
login: () => void;
logout: () => Promise<void>;
fetch: (url: string, init?: RequestInit) => Promise<Response>;
}
declare function createZitadelHandle(config: ZitadelAuthConfig): ZitadelSvelteAuth;
declare function getAuth(): ZitadelAuth;
export { createZitadelHandle, getAuth };