10 lines
270 B
Haxe
10 lines
270 B
Haxe
package node.trace_events;
|
|
|
|
typedef CreateTracingOptions = {
|
|
/**
|
|
An array of trace category names. Values included in the array are
|
|
coerced to a string when possible. An error will be thrown if the
|
|
value cannot be coerced.
|
|
**/
|
|
var categories : Array<String>;
|
|
}; |