You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
397 B
TypeScript
10 lines
397 B
TypeScript
/**
|
|
* Determines if the passed in bytes are valid utf8
|
|
* @param bytes - An array of 8-bit bytes. Must be indexable and have length property
|
|
* @param start - The index to start validating
|
|
* @param end - The index to end validating
|
|
*/
|
|
export declare function validateUtf8(bytes: {
|
|
[index: number]: number;
|
|
}, start: number, end: number): boolean;
|
|
//# sourceMappingURL=validate_utf8.d.ts.map
|