@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) • 524 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 ProductProps = typeof __propDef.props;
export type ProductEvents = typeof __propDef.events;
export type ProductSlots = typeof __propDef.slots;
export default class Product extends SvelteComponentTyped<ProductProps, ProductEvents, ProductSlots> {
}
export {};