tsx-schema-markup
Version:
A package for adding schema markup to your tsx page
9 lines (8 loc) • 605 B
TypeScript
import { VideoObject as VideoObjectSchema, Clip as ClipSchema, BroadcastEvent as BroadcastEventSchema } from "schema-dts";
type WithoutType<T, Type extends string> = Omit<T, "@type"> & {
"@type"?: Type;
};
export declare function VideoObject(props: WithoutType<VideoObjectSchema, "VideoObject">): import("react/jsx-runtime").JSX.Element;
export declare function Clip(props: WithoutType<ClipSchema, "Clip">): import("react/jsx-runtime").JSX.Element;
export declare function BroadcastEvent(props: WithoutType<BroadcastEventSchema, "BroadcastEvent">): import("react/jsx-runtime").JSX.Element;
export {};