13 lines
236 B
Haxe
13 lines
236 B
Haxe
package node.inspector.nodetracing;
|
|
|
|
typedef TraceConfig = {
|
|
/**
|
|
Controls how the trace buffer stores data.
|
|
**/
|
|
@:optional
|
|
var recordMode : String;
|
|
/**
|
|
Included category filters.
|
|
**/
|
|
var includedCategories : Array<String>;
|
|
}; |