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
+13
View File
@@ -0,0 +1,13 @@
import { type DescEnum, ScalarType } from "../descriptors.js";
/**
* Parse an enum value from the Protobuf text format.
*
* @private
*/
export declare function parseTextFormatEnumValue(descEnum: DescEnum, value: string): number;
/**
* Parse a scalar value from the Protobuf text format.
*
* @private
*/
export declare function parseTextFormatScalarValue(type: ScalarType, value: string): number | boolean | string | bigint | Uint8Array;