UNPKG

@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) 531 B
import { SvelteComponentTyped } from "svelte"; import type { SEOWebPage } from '../../../types.js'; declare const __propDef: { props: { data: SEOWebPage; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type BusinessProps = typeof __propDef.props; export type BusinessEvents = typeof __propDef.events; export type BusinessSlots = typeof __propDef.slots; export default class Business extends SvelteComponentTyped<BusinessProps, BusinessEvents, BusinessSlots> { } export {};