Initial commit
This commit is contained in:
12
node_modules/@maplibre/mlt/dist/encoding/stringEncoder.d.ts
generated
vendored
Normal file
12
node_modules/@maplibre/mlt/dist/encoding/stringEncoder.d.ts
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
/**
|
||||
* Encodes plain strings into a complete stream with PRESENT (if needed), LENGTH, and DATA streams.
|
||||
* @param strings - Array of strings (can include null values)
|
||||
* @returns Encoded Uint8Array that can be passed to decodeString
|
||||
*/
|
||||
export declare function encodePlainStrings(strings: (string | null)[]): Uint8Array;
|
||||
/**
|
||||
* Encodes dictionary-compressed strings into a complete stream.
|
||||
* @param strings - Array of strings (can include null values)
|
||||
* @returns Encoded Uint8Array that can be passed to decodeString
|
||||
*/
|
||||
export declare function encodeDictionaryStrings(strings: (string | null)[]): Uint8Array;
|
||||
Reference in New Issue
Block a user