9 lines
318 B
TypeScript
9 lines
318 B
TypeScript
/**
|
|
* @description Check if access is out of bounds.
|
|
* @param pos The position want to access.
|
|
* @param lower The lower bound.
|
|
* @param upper The upper bound.
|
|
* @return Boolean about if access is out of bounds.
|
|
*/
|
|
export declare function checkWithinAccessParams(pos: number, lower: number, upper: number): void;
|