mirror of
https://github.com/withastro/astro.git
synced 2024-12-30 22:03:56 -05:00
fix(sitemap): add missing xslURL
property to SitemapOptions
type (#12156)
This commit is contained in:
parent
a33804110d
commit
07754f5873
2 changed files with 7 additions and 0 deletions
5
.changeset/funny-onions-grin.md
Normal file
5
.changeset/funny-onions-grin.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
'@astrojs/sitemap': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
Adds missing `xslURL` property to `SitemapOptions` type.
|
|
@ -35,6 +35,8 @@ export type SitemapOptions =
|
||||||
|
|
||||||
// called for each sitemap item just before to save them on disk, sync or async
|
// called for each sitemap item just before to save them on disk, sync or async
|
||||||
serialize?(item: SitemapItem): SitemapItem | Promise<SitemapItem | undefined> | undefined;
|
serialize?(item: SitemapItem): SitemapItem | Promise<SitemapItem | undefined> | undefined;
|
||||||
|
|
||||||
|
xslURL?: string;
|
||||||
}
|
}
|
||||||
| undefined;
|
| undefined;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue