lik/dist/lik.stringmap.d.ts
2016-07-22 14:59:09 +02:00

24 lines
542 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;
/**
* checks stringPresence with minimatch
*/
checkMinimatch(stringArg: string): void;
}