Skip to content

Commit

Permalink
Build
Browse files Browse the repository at this point in the history
  • Loading branch information
corscheid committed Aug 8, 2024
1 parent c41555f commit 6b16daf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions dist/index.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@ async function valid(words, init) {
}
/**
* Returns a string saying how long the dict is
* @param {string} lang results/ui language
* @param {RequestInit | undefined} init fetch options (optional)
* @returns {Promise<string>}
*/
Expand All @@ -295,6 +296,7 @@ async function reefMe(words, init) {
}
/**
* Returns a map of how often every phoneme appears in Na'vi
* @param {string} lang results/ui language
* @param {RequestInit | undefined} init fetch options (optional)
* @returns {Promise<string[][][]>}
*/
Expand Down
2 changes: 2 additions & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,7 @@ async function valid(words, init) {
}
/**
* Returns a string saying how long the dict is
* @param {string} lang results/ui language
* @param {RequestInit | undefined} init fetch options (optional)
* @returns {Promise<string>}
*/
Expand All @@ -297,6 +298,7 @@ async function reefMe(words, init) {
}
/**
* Returns a map of how often every phoneme appears in Na'vi
* @param {string} lang results/ui language
* @param {RequestInit | undefined} init fetch options (optional)
* @returns {Promise<string[][][]>}
*/
Expand Down
4 changes: 3 additions & 1 deletion dist/other.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@ declare function homonyms(init?: RequestInit): Promise<Word[][]>;
declare function valid(words: string, init?: RequestInit): Promise<string>;
/**
* Returns a string saying how long the dict is
* @param {string} lang results/ui language
* @param {RequestInit | undefined} init fetch options (optional)
* @returns {Promise<string>}
*/
declare function dictLen(lang: string, init?: RequestInit): Promise<String>;
declare function dictLen(lang: string, init?: RequestInit): Promise<string>;
/**
* Returns reef dialect spelling and IPA given interdialect IPA
* @param {string} words words to search
Expand All @@ -39,6 +40,7 @@ declare function dictLen(lang: string, init?: RequestInit): Promise<String>;
declare function reefMe(words: string, init?: RequestInit): Promise<string[]>;
/**
* Returns a map of how often every phoneme appears in Na'vi
* @param {string} lang results/ui language
* @param {RequestInit | undefined} init fetch options (optional)
* @returns {Promise<string[][][]>}
*/
Expand Down

0 comments on commit 6b16daf

Please sign in to comment.