/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
declarations/plugins/schemes/HttpUriPlugin.d.ts
43 строки
1 KB
Alexander Akait
chore(deps): bump dependencies and refresh lockfile (#21321)
01 июл 2026, 20:28
Не верифицирован
01 июл 2026, 20:28
5461ae4
Код
Авторство
О чём код?
/* * This file was automatically generated. * DO NOT MODIFY BY HAND. * Run `yarn fix:special` to update */ export type HttpUriPluginOptions = HttpUriOptions; /** * List of allowed URIs (resp. the beginning of them). */ export type HttpUriOptionsAllowedUris = ( RegExp | string | import("../../../lib/schemes/HttpUriPlugin").AllowedUriFn )[]; /** * Options for building http resources. */ export interface HttpUriOptions { /** * List of allowed URIs (resp. the beginning of them). */ allowedUris: HttpUriOptionsAllowedUris; /** * Location where resource content is stored for lockfile entries. It's also possible to disable storing by passing false. */ cacheLocation?: false | string; /** * When set, anything that would lead to a modification of the lockfile or any resource content, will result in an error. */ frozen?: boolean; /** * Location of the lockfile. */ lockfileLocation?: string; /** * Proxy configuration, which can be used to specify a proxy server to use for HTTP requests. */ proxy?: string; /** * When set, resources of existing lockfile entries will be fetched and entries will be upgraded when resource content has changed. */ upgrade?: boolean; }