docs: documentation for contribution of change

Signed-off-by: Tim Klever <tim.v.klever@aexp.com>
This commit is contained in:
Tim Klever
2025-04-07 19:14:47 -07:00
parent b883f85f13
commit 163f3dabf1
2 changed files with 19 additions and 0 deletions
+10
View File
@@ -11,6 +11,14 @@ export function getManifestByReleaseLine(
// @public
export type GetManifestByReleaseLineOptions = {
releaseLine: string;
fetch?: (
url: string,
options?: {
signal?: AbortSignal;
},
) => Promise<Pick<Response, 'ok' | 'status' | 'text' | 'json' | 'url'>>;
gitHubRawBaseUrl?: string;
versionsBaseUrl?: string;
};
// @public
@@ -27,6 +35,8 @@ export type GetManifestByVersionOptions = {
signal?: AbortSignal;
},
) => Promise<Pick<Response, 'status' | 'json' | 'url'>>;
gitHubRawBaseUrl?: string;
versionsBaseUrl?: string;
};
// @public