GetManifestByVersionOptions
Home > @backstage/release-manifests
> GetManifestByVersionOptions
Options for getManifestByVersion().
Signature:
export type GetManifestByVersionOptions = {
version: string;
fetch?: (url: string, options?: {
signal?: AbortSignal;
}) => Promise<Pick<Response, 'status' | 'json' | 'url'>>;
};