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