feat(Struct)
This commit is contained in:
8
types/ConstArray.d.ts
vendored
Normal file
8
types/ConstArray.d.ts
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user