rc-js-util
Version:
A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.
8 lines • 306 B
TypeScript
/**
* @public
*/
export interface ITypedArrayExtensions {
copyFromBuffer(_memoryDataView: DataView, _pointer: number, _littleEndian?: boolean): void;
copyToBuffer(_memoryDataView: DataView, _pointer: number, _littleEndian?: boolean): void;
}
//# sourceMappingURL=i-typed-array-extensions.d.ts.map