astro-accelerator-utils 0.1.16 → 0.1.17
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/index.d.mts +1 -1
- package/index.mjs +0 -2
- package/lib/v1/authors.d.mts +4 -2
- package/lib/v1/authors.mjs +2 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -10,4 +10,4 @@ import * as PostOrdering from "./lib/postOrdering.mjs";
|
|
|
10
10
|
import * as PostPaging from "./lib/postPaging.mjs";
|
|
11
11
|
import * as FooterMenu from "./lib/footerMenu.mjs";
|
|
12
12
|
import * as Taxonomy from "./lib/taxonomy.mjs";
|
|
13
|
-
export { Authors, Cache, DateFormatter, Markdown, Navigation, Posts, UrlFormatter, PostFiltering, PostOrdering, PostPaging, FooterMenu,
|
|
13
|
+
export { Authors, Cache, DateFormatter, Markdown, Navigation, Posts, UrlFormatter, PostFiltering, PostOrdering, PostPaging, FooterMenu, Taxonomy };
|
package/index.mjs
CHANGED
|
@@ -10,7 +10,6 @@ import * as PostFiltering from './lib/postFiltering.mjs';
|
|
|
10
10
|
import * as PostOrdering from './lib/postOrdering.mjs';
|
|
11
11
|
import * as PostPaging from './lib/postPaging.mjs';
|
|
12
12
|
import * as FooterMenu from './lib/footerMenu.mjs';
|
|
13
|
-
import * as NavigationX from './lib/navigation.mjs';
|
|
14
13
|
import * as Taxonomy from './lib/taxonomy.mjs';
|
|
15
14
|
|
|
16
15
|
export {
|
|
@@ -25,6 +24,5 @@ export {
|
|
|
25
24
|
PostOrdering,
|
|
26
25
|
PostPaging,
|
|
27
26
|
FooterMenu,
|
|
28
|
-
NavigationX,
|
|
29
27
|
Taxonomy
|
|
30
28
|
};
|
package/lib/v1/authors.d.mts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @typedef { import("../../types/AuthorList").AuthorList } AuthorList
|
|
3
|
-
* @typedef { import(
|
|
3
|
+
* @typedef { import("../../types/Astro").MarkdownInstance } MarkdownInstance
|
|
4
|
+
* @typedef { import("../../types/Frontmatter").Frontmatter } Frontmatter
|
|
4
5
|
*/
|
|
5
6
|
export class Authors {
|
|
6
7
|
/**
|
|
@@ -23,4 +24,5 @@ export class Authors {
|
|
|
23
24
|
info(slug: string): MarkdownInstance;
|
|
24
25
|
}
|
|
25
26
|
export type AuthorList = import("../../types/AuthorList").AuthorList;
|
|
26
|
-
export type MarkdownInstance = import(
|
|
27
|
+
export type MarkdownInstance = import("../../types/Astro").MarkdownInstance;
|
|
28
|
+
export type Frontmatter = import("../../types/Frontmatter").Frontmatter;
|
package/lib/v1/authors.mjs
CHANGED
|
@@ -2,7 +2,8 @@ import * as PostFiltering from '../postFiltering.mjs';
|
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* @typedef { import("../../types/AuthorList").AuthorList } AuthorList
|
|
5
|
-
* @typedef { import(
|
|
5
|
+
* @typedef { import("../../types/Astro").MarkdownInstance } MarkdownInstance
|
|
6
|
+
* @typedef { import("../../types/Frontmatter").Frontmatter } Frontmatter
|
|
6
7
|
*/
|
|
7
8
|
|
|
8
9
|
export class Authors {
|