@rimelight/seo 0.0.9 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/env.d.ts +66 -66
package/package.json
CHANGED
package/src/env.d.ts
CHANGED
|
@@ -1,66 +1,66 @@
|
|
|
1
|
-
declare module "virtual:rimelight/seo" {
|
|
2
|
-
export const siteConfig: import("./types.js").SiteConfig
|
|
3
|
-
export const SEO_LOCALES: import("./types.js").LocaleConfig | Record<string, string> | undefined
|
|
4
|
-
export const PRIVATE_PATH_PREFIXES: string[]
|
|
5
|
-
export const seoConfig: {
|
|
6
|
-
SEO_LOCALES?: import("./types.js").LocaleConfig | Record<string, string>
|
|
7
|
-
PRIVATE_PATH_PREFIXES: string[]
|
|
8
|
-
}
|
|
9
|
-
export default siteConfig
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
declare module "virtual:rimelight-seo-config" {
|
|
13
|
-
const config: import("./integration.js").RimelightSeoOptions
|
|
14
|
-
export default config
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
declare module "virtual:rimelight-seo/options" {
|
|
18
|
-
const config: import("./integration.js").RimelightSeoOptions
|
|
19
|
-
export default config
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
declare module "virtual:rimelight-seo/config" {
|
|
23
|
-
export const SEO_LOCALES: import("./types.js").LocaleConfig | undefined
|
|
24
|
-
export const PRIVATE_PATH_PREFIXES: string[] | undefined
|
|
25
|
-
export const seoEntries: (() => Promise<import("./types.js").SeoEntry[]>) | undefined
|
|
26
|
-
export const rssEntries: (() => Promise<import("./types.js").RssItem[]>) | undefined
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
declare module "virtual:rimelight-seo/site-config" {
|
|
30
|
-
export const siteConfig: import("./types.js").SiteConfig | Record<string, any>
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
declare module "virtual:rimelight-seo/db" {
|
|
34
|
-
export const db: any
|
|
35
|
-
export const pages: any
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
declare module "virtual:rimelight-seo/corpus" {
|
|
39
|
-
export const corpusPages: any[]
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
declare module "#db/schema" {
|
|
43
|
-
export const pages: any
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
declare module "drizzle-orm" {
|
|
47
|
-
export const and: (...args: any[]) => any
|
|
48
|
-
export const isNull: (column: any) => any
|
|
49
|
-
export const isNotNull: (column: any) => any
|
|
50
|
-
export const sql: any
|
|
51
|
-
export const eq: (column: any, value: any) => any
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
declare module "@rimelight/cms" {
|
|
55
|
-
export const renderCorpusMarkdown: (db: any, options: any) => Promise<string>
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
declare module "astro:content" {
|
|
59
|
-
export const getCollection: (collection: string) => Promise<any[]>
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
declare module "virtual:rimelight-seo/assets" {
|
|
63
|
-
export const masterIconBuffer: Buffer | null
|
|
64
|
-
export const isSvg: boolean
|
|
65
|
-
export const backgroundColor: string
|
|
66
|
-
}
|
|
1
|
+
declare module "virtual:rimelight/seo" {
|
|
2
|
+
export const siteConfig: import("./types.js").SiteConfig
|
|
3
|
+
export const SEO_LOCALES: import("./types.js").LocaleConfig | Record<string, string> | undefined
|
|
4
|
+
export const PRIVATE_PATH_PREFIXES: string[]
|
|
5
|
+
export const seoConfig: {
|
|
6
|
+
SEO_LOCALES?: import("./types.js").LocaleConfig | Record<string, string>
|
|
7
|
+
PRIVATE_PATH_PREFIXES: string[]
|
|
8
|
+
}
|
|
9
|
+
export default siteConfig
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
declare module "virtual:rimelight-seo-config" {
|
|
13
|
+
const config: import("./integration.js").RimelightSeoOptions
|
|
14
|
+
export default config
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
declare module "virtual:rimelight-seo/options" {
|
|
18
|
+
const config: import("./integration.js").RimelightSeoOptions
|
|
19
|
+
export default config
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
declare module "virtual:rimelight-seo/config" {
|
|
23
|
+
export const SEO_LOCALES: import("./types.js").LocaleConfig | undefined
|
|
24
|
+
export const PRIVATE_PATH_PREFIXES: string[] | undefined
|
|
25
|
+
export const seoEntries: (() => Promise<import("./types.js").SeoEntry[]>) | undefined
|
|
26
|
+
export const rssEntries: (() => Promise<import("./types.js").RssItem[]>) | undefined
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
declare module "virtual:rimelight-seo/site-config" {
|
|
30
|
+
export const siteConfig: import("./types.js").SiteConfig | Record<string, any>
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
declare module "virtual:rimelight-seo/db" {
|
|
34
|
+
export const db: any
|
|
35
|
+
export const pages: any
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
declare module "virtual:rimelight-seo/corpus" {
|
|
39
|
+
export const corpusPages: any[]
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
declare module "#db/schema" {
|
|
43
|
+
export const pages: any
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
declare module "drizzle-orm" {
|
|
47
|
+
export const and: (...args: any[]) => any
|
|
48
|
+
export const isNull: (column: any) => any
|
|
49
|
+
export const isNotNull: (column: any) => any
|
|
50
|
+
export const sql: any
|
|
51
|
+
export const eq: (column: any, value: any) => any
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
declare module "@rimelight/cms" {
|
|
55
|
+
export const renderCorpusMarkdown: (db: any, options: any) => Promise<string>
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
declare module "astro:content" {
|
|
59
|
+
export const getCollection: (collection: string) => Promise<any[]>
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
declare module "virtual:rimelight-seo/assets" {
|
|
63
|
+
export const masterIconBuffer: Buffer | null
|
|
64
|
+
export const isSvg: boolean
|
|
65
|
+
export const backgroundColor: string
|
|
66
|
+
}
|