UNPKG

typescript-dotnet-core

Version:

A the core classes and utilities of a JavaScript-Friendly .NET Based TypeScript Library.

11 lines (10 loc) 495 B
/*! * @author electricessence / https://github.com/electricessence/ * From Netjs mscorlib.ts * Licensing: MIT https://github.com/electricessence/TypeScript.NET-Core/blob/master/LICENSE.md */ export declare function isWhiteSpace(ch: number): boolean; export declare function isLetter(ch: number): boolean; export declare function isLetterOrDigit(ch: number): boolean; export declare function isDigit(ch: number): boolean; export declare function isDigit(str: string, index: number): boolean;