@sveltinio/seo
Version:
A collection of type-safe SEO related Svelte components to easily add structured SEO data to pages in Svelte & SvelteKit.
18 lines (17 loc) • 538 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { SEOWebPage } from '../../../types.js';
declare const __propDef: {
props: {
data: SEOWebPage;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type MusicSongProps = typeof __propDef.props;
export type MusicSongEvents = typeof __propDef.events;
export type MusicSongSlots = typeof __propDef.slots;
export default class MusicSong extends SvelteComponentTyped<MusicSongProps, MusicSongEvents, MusicSongSlots> {
}
export {};