refactor: fix build

This commit is contained in:
Christian Benincasa
2025-01-18 10:21:07 -05:00
parent a46cdd26be
commit 00c14f1675
2 changed files with 14 additions and 4 deletions

View File

@@ -1,4 +1,12 @@
import { z } from 'zod';
import { TranscodeConfigSchema } from './schemas/transcodeConfigSchemas.js';
import {
SupportedTranscodeVideoOutputFormats,
TranscodeConfigSchema,
} from './schemas/transcodeConfigSchemas.js';
import { TupleToUnion } from './util.js';
export type SupportedTranscodeVideoOutputFormat = TupleToUnion<
typeof SupportedTranscodeVideoOutputFormats
>;
export type TranscodeConfig = z.infer<typeof TranscodeConfigSchema>;