(
id: string,
options?: {
ssr?: boolean
},
)
| 1283 | } |
| 1284 | |
| 1285 | async load( |
| 1286 | id: string, |
| 1287 | options?: { |
| 1288 | ssr?: boolean |
| 1289 | }, |
| 1290 | ): Promise<LoadResult | null> { |
| 1291 | return this._getPluginContainer(options).load(id) |
| 1292 | } |
| 1293 | |
| 1294 | async transform( |
| 1295 | code: string, |
nothing calls this directly
no test coverage detected