9 lines
213 B
TypeScript
9 lines
213 B
TypeScript
import { Type } from ".";
|
|
|
|
/**
|
|
* constructs type of data view with constant byte size
|
|
* @param {number} byte_size max byte size
|
|
* @returns {Type}
|
|
*/
|
|
export function ConstDataView(byte_size: number): Type;
|