Files
30-seconds-of-code/node_modules/opentracing/lib/binary_carrier.d.ts
2019-08-20 15:52:05 +02:00

11 lines
363 B
TypeScript

/**
* Convenience class to use as a binary carrier.
*
* Any valid Object with a field named `buffer` may be used as a binary carrier;
* this class is only one such type of object that can be used.
*/
export default class BinaryCarrier {
buffer: ArrayLike<number>;
constructor(buffer: ArrayLike<number>);
}
//# sourceMappingURL=binary_carrier.d.ts.map