Skip to content

Commit 6af0163

Browse files
committed
Add missing exports to index.ts
1 parent 9d8c348 commit 6af0163

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ that this package provides:
2525

2626
```ts
2727
import { defineCollection } from "astro:content";
28-
import { hiveBlogLoader } from "@onhive.io/astro-loader";
28+
import { hiveBlogLoader, hiveAccountsLoader } from "@onhive.io/astro-loader";
2929

3030
export const collections = {
3131
blog: defineCollection({

src/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
export { hiveBlogLoader } from "~/loaders/blogLoader";
2+
export { hiveAccountsLoader } from "~/loaders/accountsLoader";
23

34
export type { Post } from "~/schema/posts.ts";
45
export type { Communities } from "~/schema/communities.ts";
6+
export type { Account, Money, Wallet } from "~/schema/accounts.ts";

0 commit comments

Comments
 (0)