add missing descriptions to schema

This commit is contained in:
Tobias Koppers 2021-10-25 12:33:33 +02:00
parent a8b00f864c
commit 691e37b6f1
4 changed files with 9 additions and 4 deletions

View File

@ -2962,12 +2962,14 @@ export interface LazyCompilationDefaultBackendOptions {
server?:
| (import("https").ServerOptions | import("http").ServerOptions)
| (() => import("net").Server);
[k: string]: any;
}
/**
* Options for compiling entrypoints and import()s only when they are accessed.
*/
export interface LazyCompilationOptions {
/**
* Specifies the backend that should be used for handling client keep alive.
*/
backend?:
| (
| ((

File diff suppressed because one or more lines are too long

View File

@ -1618,6 +1618,7 @@
"LazyCompilationDefaultBackendOptions": {
"description": "Options for the default backend.",
"type": "object",
"additionalProperties": false,
"properties": {
"client": {
"description": "A custom client.",
@ -1682,6 +1683,7 @@
"additionalProperties": false,
"properties": {
"backend": {
"description": "Specifies the backend that should be used for handling client keep alive.",
"anyOf": [
{
"description": "A custom backend.",

5
types.d.ts vendored
View File

@ -5805,8 +5805,6 @@ declare interface KnownStatsProfile {
* Options for the default backend.
*/
declare interface LazyCompilationDefaultBackendOptions {
[index: string]: any;
/**
* A custom client.
*/
@ -5832,6 +5830,9 @@ declare interface LazyCompilationDefaultBackendOptions {
* Options for compiling entrypoints and import()s only when they are accessed.
*/
declare interface LazyCompilationOptions {
/**
* Specifies the backend that should be used for handling client keep alive.
*/
backend?:
| ((
compiler: Compiler,