Skip to content

Commit 21e0d28

Browse files
committed
docs: add missing types in env API docs
1 parent 74079f7 commit 21e0d28

File tree

2 files changed

+54
-9
lines changed

2 files changed

+54
-9
lines changed

guide/api-environment-instances.md

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,25 +64,43 @@ class DevEnvironment {
6464
*/
6565
config: ResolvedConfig & ResolvedDevEnvironmentOptions
6666

67-
constructor(name, config, { hot, options }: DevEnvironmentSetup)
67+
constructor(
68+
name: string,
69+
config: ResolvedConfig,
70+
context: DevEnvironmentContext,
71+
)
6872

6973
/**
7074
* URL を id に解決してロードし、プラグインパイプラインを使ってコードを処理する。
7175
* モジュールグラフも更新されます。
7276
*/
73-
async transformRequest(url: string): TransformResult
77+
async transformRequest(url: string): Promise<TransformResult | null>
7478

7579
/**
7680
* 低い優先度で処理されるリクエストを登録します。ウォーターフォールを回避するのに
7781
* 役立ちます。Vite サーバーは他のリクエストによってインポートされたモジュールに関する
7882
* 情報を持っているため、モジュールがリクエストされたときにすでに処理されているよう、
7983
* モジュールグラフをウォームアップできます。
8084
*/
81-
async warmupRequest(url: string): void
85+
async warmupRequest(url: string): Promise<void>
8286
}
8387
```
8488

85-
`TransformResult` は次のようになります:
89+
`DevEnvironmentContext` は次のようになります:
90+
91+
```ts
92+
interface DevEnvironmentContext {
93+
hot: boolean
94+
transport?: HotChannel | WebSocketServer
95+
options?: EnvironmentOptions
96+
remoteRunner?: {
97+
inlineSourceMap?: boolean
98+
}
99+
depsOptimizer?: DepsOptimizer
100+
}
101+
```
102+
103+
そして `TransformResult` は:
86104

87105
```ts
88106
interface TransformResult {
@@ -156,10 +174,14 @@ export class EnvironmentModuleGraph {
156174
rawUrl: string,
157175
): Promise<EnvironmentModuleNode | undefined>
158176

177+
getModuleById(id: string): EnvironmentModuleNode | undefined
178+
159179
getModulesByFile(file: string): Set<EnvironmentModuleNode> | undefined
160180

161181
onFileChange(file: string): void
162182

183+
onFileDelete(file: string): void
184+
163185
invalidateModule(
164186
mod: EnvironmentModuleNode,
165187
seen: Set<EnvironmentModuleNode> = new Set(),

guide/api-environment-runtimes.md

Lines changed: 28 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ function createWorkerdDevEnvironment(
118118
export class ModuleRunner {
119119
constructor(
120120
public options: ModuleRunnerOptions,
121-
public evaluator: ModuleEvaluator,
121+
public evaluator: ModuleEvaluator = new ESModulesEvaluator(),
122122
private debug?: ModuleRunnerDebugger,
123123
) {}
124124
/**
@@ -165,8 +165,21 @@ await moduleRunner.import('/src/entry-point.js')
165165

166166
## `ModuleRunnerOptions`
167167

168-
```ts
169-
export interface ModuleRunnerOptions {
168+
```ts twoslash
169+
import type {
170+
InterceptorOptions as InterceptorOptionsRaw,
171+
ModuleRunnerHmr as ModuleRunnerHmrRaw,
172+
EvaluatedModules,
173+
} from 'vite/module-runner'
174+
import type { Debug } from '@type-challenges/utils'
175+
176+
type InterceptorOptions = Debug<InterceptorOptionsRaw>
177+
type ModuleRunnerHmr = Debug<ModuleRunnerHmrRaw>
178+
/** see below */
179+
type ModuleRunnerTransport = unknown
180+
181+
// ---cut---
182+
interface ModuleRunnerOptions {
170183
/**
171184
* プロジェクトのルート
172185
*/
@@ -211,7 +224,13 @@ export interface ModuleRunnerOptions {
211224

212225
**型シグネチャー:**
213226

214-
```ts
227+
```ts twoslash
228+
import type { ModuleRunnerContext as ModuleRunnerContextRaw } from 'vite/module-runner'
229+
import type { Debug } from '@type-challenges/utils'
230+
231+
type ModuleRunnerContext = Debug<ModuleRunnerContextRaw>
232+
233+
// ---cut---
215234
export interface ModuleEvaluator {
216235
/**
217236
* 変換後のコードに含まれるプレフィックスの行数。
@@ -242,7 +261,11 @@ Vite はデフォルトでこのインターフェイスを実装した `ESModul
242261

243262
**型シグネチャー:**
244263

245-
```ts
264+
```ts twoslash
265+
import type { ModuleRunnerTransportHandlers } from 'vite/module-runner'
266+
/** オブジェクト */
267+
type HotPayload = unknown
268+
// ---cut---
246269
interface ModuleRunnerTransport {
247270
connect?(handlers: ModuleRunnerTransportHandlers): Promise<void> | void
248271
disconnect?(): Promise<void> | void

0 commit comments

Comments
 (0)