repository-provider 32.7.8 → 32.7.9
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/package.json +1 -1
- package/src/ref.mjs +1 -1
- package/src/repository-owner.mjs +1 -1
package/package.json
CHANGED
package/src/ref.mjs
CHANGED
|
@@ -54,7 +54,7 @@ export class Ref extends OwnedObject {
|
|
|
54
54
|
|
|
55
55
|
/**
|
|
56
56
|
* List entries of the branch.
|
|
57
|
-
* @param {string[]} [matchingPatterns]
|
|
57
|
+
* @param {string|string[]} [matchingPatterns]
|
|
58
58
|
* @return {AsyncIterator<ContentEntry>} all matching entries in the branch
|
|
59
59
|
*/
|
|
60
60
|
async *entries(matchingPatterns) {}
|
package/src/repository-owner.mjs
CHANGED
|
@@ -39,7 +39,7 @@ export function RepositoryOwner(base) {
|
|
|
39
39
|
/**
|
|
40
40
|
* Lookup a repository.
|
|
41
41
|
* @param {string} name of the repository may contain a #branch
|
|
42
|
-
* @return {Promise<Repository>}
|
|
42
|
+
* @return {Promise<Repository|undefined>}
|
|
43
43
|
*/
|
|
44
44
|
async repository(name) {
|
|
45
45
|
if (name !== undefined) {
|