12 lines
189 B
Haxe
12 lines
189 B
Haxe
package node.util;
|
|
|
|
typedef EncodeIntoResult = {
|
|
/**
|
|
The read Unicode code units of input.
|
|
**/
|
|
var read : Float;
|
|
/**
|
|
The written UTF-8 bytes of output.
|
|
**/
|
|
var written : Float;
|
|
}; |