remix-seo-plus
Version:
Collection of SEO utilities like sitemap, robots.txt, etc. for a Remix application. A fork of https://github.com/balavishnuvj/remix-seo with some added bug fixes and features.
8 lines (7 loc) • 310 B
TypeScript
import type { ServerBuild } from "@remix-run/server-runtime";
import { GenerateSitemapArgs } from "../types";
declare type Options = {
siteUrl: string;
};
declare function getSitemapXml(args: GenerateSitemapArgs, routes: ServerBuild["routes"], options: Options): Promise<string>;
export { getSitemapXml };