UI/UX: Adiciona campo opcional para colagem manual de transcrição no VideoMind

This commit is contained in:
2026-06-05 22:19:33 +00:00
parent 281005a8bc
commit 3781c848da
2395 changed files with 242184 additions and 20 deletions
+27
View File
@@ -0,0 +1,27 @@
import type { ObservedArray } from '../helpers.js';
import CommentsHeader from '../classes/comments/CommentsHeader.js';
import CommentThread from '../classes/comments/CommentThread.js';
import type { Actions, ApiResponse } from '../../core/index.js';
import type { INextResponse } from '../types/index.js';
export default class Comments {
#private;
header?: CommentsHeader;
contents: ObservedArray<CommentThread>;
constructor(actions: Actions, data: any, already_parsed?: boolean);
/**
* Applies given sort option to the comments.
* @param sort - Sort type.
*/
applySort(sort: 'TOP_COMMENTS' | 'NEWEST_FIRST'): Promise<Comments>;
/**
* Creates a top-level comment.
* @param text - Comment text.
*/
createComment(text: string): Promise<ApiResponse>;
/**
* Retrieves next batch of comments.
*/
getContinuation(): Promise<Comments>;
get has_continuation(): boolean;
get page(): INextResponse;
}