Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurin-W committed Aug 1, 2024
1 parent b7dfd11 commit e69bef7
Show file tree
Hide file tree
Showing 7 changed files with 2,817 additions and 2,789 deletions.
312 changes: 233 additions & 79 deletions src/frontend/packages/activitypub-components/dist/index.cjs.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/frontend/packages/activitypub-components/dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ interface UseCollectionOptions {
liveUpdates?: boolean;
}
/**
* Subscribe a collection.
* Subscribe a collection. Supports pagination.
* @param predicateOrUrl The collection URI or the predicate to get the collection URI from the identity (webId).
* @param {UseCollectionOptions} options Defaults to `{ dereferenceItems: false, liveUpdates: true }`
*/
Expand All @@ -77,7 +77,7 @@ export const useCollection: (
options?: (import('react-query').RefetchOptions & import('react-query').RefetchQueryFilters<TPageData>) | undefined
) => Promise<import('react-query').QueryObserverResult<import('react-query').InfiniteData<any>, unknown>>;
fetchNextPage: (
options?: import('react-query').FetchNextPageOptions
options?: import('react-query').FetchNextPageOptions | undefined
) => Promise<import('react-query').InfiniteQueryObserverResult<any, unknown>>;
addItem: (item: string | any, shouldRefetch?: boolean | number) => void;
removeItem: (item: string | any, shouldRefetch?: boolean) => void;
Expand Down
Loading

0 comments on commit e69bef7

Please sign in to comment.