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