(bytes: Buffer | string)
| 14 | } from '#/native/web-assets'; |
| 15 | |
| 16 | function sha256(bytes: Buffer | string): string { |
| 17 | return createHash('sha256').update(bytes).digest('hex'); |
| 18 | } |
| 19 | |
| 20 | function fakeWebAssets(files: Record<string, string>): { |
| 21 | manifest: WebAssetManifest; |