lik/dist/lik.stringmap.d.ts
2016-07-22 00:16:45 +02:00

20 lines
437 B
TypeScript

/**
* allows you to easily keep track of a bunch of strings;
*/
export declare class Stringmap {
private _stringArray;
constructor();
/**
* add a string to the Stringmap
*/
addString(stringArg: string): void;
/**
* removes a string from Stringmap
*/
removeString(stringArg: string): void;
/**
* check if string is in Stringmap
*/
checkString(stringArg: string): boolean;
}