( input: TranscodeSpzInput, )
| 895 | } |
| 896 | |
| 897 | export async function transcodeSpz( |
| 898 | input: TranscodeSpzInput, |
| 899 | ): Promise<{ input: TranscodeSpzInput; fileBytes: Uint8Array }> { |
| 900 | return await withWorker(async (worker) => { |
| 901 | const result = (await worker.call("transcodeSpz", input)) as { |
| 902 | input: TranscodeSpzInput; |
| 903 | fileBytes: Uint8Array; |
| 904 | }; |
| 905 | return result; |
| 906 | }); |
| 907 | } |
| 908 | |
| 909 | export type FileInput = { |
| 910 | fileBytes: Uint8Array; |
nothing calls this directly
no test coverage detected