(
code: string,
id: string,
options?: {
ssr?: boolean
environment?: Environment
inMap?: SourceDescription['map']
},
)
| 1292 | } |
| 1293 | |
| 1294 | async transform( |
| 1295 | code: string, |
| 1296 | id: string, |
| 1297 | options?: { |
| 1298 | ssr?: boolean |
| 1299 | environment?: Environment |
| 1300 | inMap?: SourceDescription['map'] |
| 1301 | }, |
| 1302 | ): Promise<{ code: string; map: SourceMap | { mappings: '' } | null }> { |
| 1303 | return this._getPluginContainer(options).transform(code, id, options) |
| 1304 | } |
| 1305 | |
| 1306 | async close(): Promise<void> { |
| 1307 | // noop, close will be called for each environment |
no test coverage detected