lik/dist/lik.stringmap.d.ts

20 lines
437 B
TypeScript
Raw Permalink Normal View History

2016-07-21 22:16:45 +00:00
/**
* 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;
}