Skip to content

Commit

Permalink
Try to get documentation working
Browse files Browse the repository at this point in the history
  • Loading branch information
arogozine committed Jan 14, 2024
1 parent 35f3346 commit fd77907
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"build:esm": "tsc --removeComments --outDir dist/esm",
"postbuild": "node --no-warnings config/copy && node --no-warnings config/fix-imports",
"lint": "eslint -c .eslintrc.cjs --ext .ts src",
"doc": "npx rimraf doc && typedoc ./src --exclude \"**/_*/*.ts\" --exclude \"**/bindArrayEnumerable.ts\" --gitRevision master --out ./doc --excludePrivate --readme README.md --name \"LINQ To TypeScript\" --includeVersion && node config/editdocs",
"doc": "npx rimraf doc && typedoc ./src --exclude \"**/_*/*.ts\" --exclude \"**/bindArrayEnumerable.ts\" --gitRevision master --out ./doc --excludePrivate --excludeExternals --readme README.md --name \"LINQ To TypeScript\" --includeVersion && node config/editdocs",
"release:npm": "npm publish ./dist",
"release:npm-next": "npm publish ./dist --tag next",
"release:pack": "npm pack ./dist"
Expand Down
10 changes: 5 additions & 5 deletions src/types/IAsyncEnumerable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ export interface IAsyncEnumerable<TSource> extends IAsyncParallel<TSource> {
comparer?: IComparer<TSource>): IOrderedAsyncEnumerable<TSource>
/**
* Sorts the elements of a sequence in ascending order by using a specified or default comparer.
* @param keySelector A function to extract a key from an element.
* @param predicate A function to extract a key from an element.
* @param comparer An IComparer<T> to compare keys. Optional.
* @returns An IOrderedAsyncEnumerable<TElement> whose elements are sorted according to a key.
*/
Expand All @@ -236,7 +236,7 @@ export interface IAsyncEnumerable<TSource> extends IAsyncParallel<TSource> {
comparer?: IComparer<TKey>): IOrderedAsyncEnumerable<TSource>
/**
* Sorts the elements of a sequence in ascending order by using a specified comparer.
* @param keySelector An async function to extract a key from an element.
* @param predicate An async function to extract a key from an element.
* @param comparer An IComparer<T> to compare keys.
* @returns An IOrderedAsyncEnumerable<TElement> whose elements are sorted according to a key.
*/
Expand All @@ -245,7 +245,7 @@ export interface IAsyncEnumerable<TSource> extends IAsyncParallel<TSource> {
comparer?: IComparer<TKey>): IOrderedAsyncEnumerable<TSource>
/**
* Sorts the elements of a sequence in descending order by using a specified or default comparer.
* @param keySelector A function to extract a key from an element.
* @param predicate A function to extract a key from an element.
* @param comparer An IComparer<T> to compare keys. Optional.
* @returns An IOrderedAsyncEnumerable<TElement> whose elements are sorted in descending order according to a key.
*/
Expand All @@ -254,7 +254,7 @@ export interface IAsyncEnumerable<TSource> extends IAsyncParallel<TSource> {
comparer?: IComparer<TKey>): IOrderedAsyncEnumerable<TSource>
/**
* Sorts the elements of a sequence in descending order by using a specified comparer.
* @param keySelector An async function to extract a key from an element.
* @param predicate An async function to extract a key from an element.
* @param comparer An IComparer<T> to compare keys.
* @returns An IOrderedAsyncEnumerable<TElement> whose elements are sorted in descending order according to a key.
*/
Expand Down Expand Up @@ -288,7 +288,7 @@ export interface IAsyncEnumerable<TSource> extends IAsyncParallel<TSource> {
select<TResult>(selector: (x: TSource, index: number) => TResult): IAsyncEnumerable<TResult>
/**
* Projects each element of a sequence into a new form.
* @param selector A key of TSource.
* @param key A key of TSource.
* @returns
* An IAsyncEnumerable<T> whose elements are the result of getting the value from the key on each element of source.
*/
Expand Down

0 comments on commit fd77907

Please sign in to comment.