feat(titles-template): 片头片尾页面

This commit is contained in:
2025-01-16 23:37:43 +08:00
parent 57ad96e87b
commit bb75f72759
4 changed files with 453 additions and 13 deletions

19
typings/types.d.ts vendored
View File

@@ -64,6 +64,18 @@ interface GBVideoItem {
speed: number
}
interface TitlesTemplate {
id: number
create_time: number
opening_url: string
opening_file: string
ending_url: string
ending_file: string
type: number
title: string
description: string
}
// Common request and response schemas
namespace req {
namespace user {
@@ -168,6 +180,13 @@ namespace req {
interface GBVideoDelete {
task_id: string
}
interface TitlesTemplateRequest {
to_user_id: number
title_id: number
title: string
description: string
}
}
interface AssistantTemplateList {