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
+20
View File
@@ -0,0 +1,20 @@
import { Parser } from '../index.js';
import { InnertubeError } from '../../utils/Utils.js';
import AccountSectionList from '../classes/AccountSectionList.js';
export default class AccountInfo {
#page;
contents;
constructor(response) {
this.#page = Parser.parseResponse(response.data);
if (!this.#page.contents)
throw new InnertubeError('Page contents not found');
const account_section_list = this.#page.contents.array().as(AccountSectionList)[0];
if (!account_section_list)
throw new InnertubeError('Account section list not found');
this.contents = account_section_list.contents[0];
}
get page() {
return this.#page;
}
}
//# sourceMappingURL=AccountInfo.js.map