import type { IClientSideComponentManifest } from '@microsoft/sp-module-interfaces'; /** * Checks if a resource URL is accessible and throws the right error for each case. * * In the case of localhost errors, it provides guidance on usage of 'gulp' to solve them. */ export default class ResourceUrlChecker { static useSecondaryCdn: boolean; /** * Checks the resource URL for the HTTP response status code. * If the response is not successful, it throws the appropriate error. * @param manifest - Manifest where the resource is defined * @param name - Name of the resource to check */ static checkResourceUrl(manifest: IClientSideComponentManifest, name: string): Promise; private static _throwUrlStatusError; private static _getUrlStatus; } //# sourceMappingURL=ResourceUrlChecker.d.ts.map