-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
48 lines (38 loc) · 858 Bytes
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/// <reference types="node"/>
declare namespace Sitemap {
class ConstructorOptions {
base?: string
}
class SitemapModel {
loc?: string|string[];
lastmod?: string;
}
type Sitemaps = SitemapModel[]
class UrlModel {
loc?: string|string[];
lastmod?: string;
changefreq?:
'always'|
'hourly'|
'daily'|
'weekly'|
'monthly'|
'yearly'|
'never';
priority?: number;
}
type Urls = UrlModel[]
class Sitemap {
readonly base:string;
readonly urls:Sitemap.Urls;
constructor(urls?:Sitemap.Urls, options?: Sitemap.ConstructorOptions)
public toString(options?:{indent:boolean}): string;
}
class SitemapIndex {
readonly base:string;
readonly sitemaps:Sitemaps;
constructor(sitemaps?:Sitemaps, options?: Sitemap.ConstructorOptions)
public toString(options?:{indent:boolean}): string;
}
}
export = Sitemap;