sk-oidc-oauth
Version:
OIDC/OAuth2 authentication and authorization for prerendered/client-side-rendered SvelteKit apps.
17 lines (16 loc) • 444 B
TypeScript
import { SvelteComponent } from "svelte";
declare const __propDef: {
props: {
title: string;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type DebugProps = typeof __propDef.props;
export type DebugEvents = typeof __propDef.events;
export type DebugSlots = typeof __propDef.slots;
export default class Debug extends SvelteComponent<DebugProps, DebugEvents, DebugSlots> {
}
export {};