UNPKG

ts-jsdk

Version:

TypeScript implementation of the Java platform

8 lines (7 loc) 201 B
export declare class StringTokenizer { private readonly tokens; private currentIndex; constructor(str: string, delimiter?: string); hasMoreTokens(): boolean; nextToken(): string; }