forked from 77media/video-flow
修复
This commit is contained in:
parent
1c5b3e8f8c
commit
e7406be4dd
@ -101,7 +101,7 @@ export interface UseScriptService {
|
||||
createMovieProjectV1: (
|
||||
idea: string,
|
||||
userId: string,
|
||||
mode: "auto" | "manual",
|
||||
mode: "automatic" | "manual",
|
||||
resolution: string,
|
||||
language: string
|
||||
) => Promise<void>;
|
||||
@ -174,7 +174,7 @@ export const useScriptService = (): UseScriptService => {
|
||||
async (
|
||||
idea: string,
|
||||
userId: string,
|
||||
mode: "auto" | "manual",
|
||||
mode: "automatic" | "manual",
|
||||
resolution: string,
|
||||
language: string
|
||||
): Promise<void> => {
|
||||
@ -185,7 +185,7 @@ export const useScriptService = (): UseScriptService => {
|
||||
const projectData = await scriptEditUseCase.createProject(
|
||||
idea,
|
||||
userId,
|
||||
mode as "auto" | "manual",
|
||||
mode as "automatic" | "manual",
|
||||
resolution as "720p" | "1080p" | "4k",
|
||||
language
|
||||
);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user