sveltekit-embed
Version:
A collection of embed components for SvelteKit. Easily embed content from YouTube, Spotify, Vimeo, CodePen, and many more with performant, lazy-loaded components.
12 lines (11 loc) • 461 B
TypeScript
interface Props {
height?: string;
width?: string;
card_id: string;
type?: 'guild' | 'user' | 'event' | 'presentation';
display_type?: 'card' | 'item' | 'events/latest' | 'events/upcoming' | 'events/past' | 'presentations/latest' | 'presentations/upcoming' | 'presentations/other';
disable_observer?: boolean;
}
declare const Guild: import("svelte").Component<Props, {}, "">;
type Guild = ReturnType<typeof Guild>;
export default Guild;