vrack-db
Version:
This is an In Memory database designed for storing time series (graphs).
15 lines (14 loc) • 346 B
TypeScript
export default class Typing {
/**
* Check the number is unsignet integer
*
* @param num check value
*/
static isUInt(num: number): boolean;
/**
* Checks if a string is a name
* Only Latin letters and dots are allowed
* @param name check name string
*/
static isName(name: string): boolean;
}