@jam-comments/astro
Version:
Easily add performant, SEO-friendly comments to your Astro blog with JamComments.
24 lines (20 loc) • 462 B
TypeScript
import { CustomCopy } from "@jam-comments/server-utilities";
declare global {
interface Window {
JamComments: {
initialize: () => void;
};
}
}
export interface JamCommentsProps {
path?: string;
schema?: string | object;
domain?: string;
apiKey?: string;
baseUrl?: string;
dateFormat?: string;
environment?: string;
tz?: string;
copy?: CustomCopy;
}
export default function JamComments(args: JamCommentsProps): JSX.Element;