18 lines
446 B
Haxe
18 lines
446 B
Haxe
package node.stream.web;
|
|
|
|
typedef ITextDecoderStream = {
|
|
/**
|
|
Returns encoding's name, lower cased.
|
|
**/
|
|
final encoding : String;
|
|
/**
|
|
Returns `true` if error mode is "fatal", and `false` otherwise.
|
|
**/
|
|
final fatal : Bool;
|
|
/**
|
|
Returns `true` if ignore BOM flag is set, and `false` otherwise.
|
|
**/
|
|
final ignoreBOM : Bool;
|
|
final readable : ReadableStream<String>;
|
|
final writable : WritableStream<node.crypto.webcrypto.BufferSource>;
|
|
}; |