9 lines
198 B
TypeScript
9 lines
198 B
TypeScript
import { Type } from ".";
|
|
|
|
/**
|
|
* constructs type of array with constant byte size
|
|
* @param {number} size number of items
|
|
* @returns {Type}
|
|
*/
|
|
export function ConstArray(size: number): Type;
|