bc-minecraft-bedrock-types
Version:
The typescript library that provides default types for minecraft bedrock
10 lines (9 loc) • 341 B
TypeScript
/** */
export declare namespace Coordinate {
/**The regex pattern that matches a coordinate */
const pattern: RegExp;
/**Checks if the given text value is a valid coordinate
* @param value The valued to compare to
* @returns True or false if the text represents a coordinate*/
function is(text: string): boolean;
}