esiil
Version:
Minimalist library for EVE Online's ESI
7 lines (6 loc) • 348 B
TypeScript
declare function _isString(testValue: string): testValue is string;
declare function _isInt(testValue: number): boolean;
declare function _isURL(testValue: string): boolean;
declare function _isVersion(testValue: string): boolean;
declare function _isSource(testValue: string): boolean;
export { _isString, _isURL, _isVersion, _isSource, _isInt };