forked from 77media/video-flow
20 lines
311 B
TypeScript
20 lines
311 B
TypeScript
// 基础类型
|
|
export interface Shot {
|
|
id: string;
|
|
videoUrl?: string;
|
|
thumbnailUrl: string;
|
|
isGenerating: boolean;
|
|
isSelected: boolean;
|
|
}
|
|
|
|
export interface Character {
|
|
id: string;
|
|
name: string;
|
|
avatarUrl: string;
|
|
}
|
|
|
|
export interface Scene {
|
|
id: string;
|
|
name: string;
|
|
avatarUrl: string;
|
|
}
|