sk-oidc-oauth
Version:
OIDC/OAuth2 authentication and authorization for prerendered/client-side-rendered SvelteKit apps.
24 lines (23 loc) • 662 B
TypeScript
/** @typedef {typeof __propDef.props} LoadingProps */
/** @typedef {typeof __propDef.events} LoadingEvents */
/** @typedef {typeof __propDef.slots} LoadingSlots */
export default class Loading extends SvelteComponent<{
[x: string]: never;
}, {
[evt: string]: CustomEvent<any>;
}, {}> {
}
export type LoadingProps = typeof __propDef.props;
export type LoadingEvents = typeof __propDef.events;
export type LoadingSlots = typeof __propDef.slots;
import { SvelteComponent } from "svelte";
declare const __propDef: {
props: {
[x: string]: never;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export {};