UNPKG

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.

4 lines (3 loc) 261 B
import type { ServerBuild } from "@remix-run/server-runtime"; import { GenerateSitemapArgs, SEOOptions } from "../types"; export declare function generateSitemap(args: GenerateSitemapArgs, routes: ServerBuild["routes"], options: SEOOptions): Promise<Response>;