// Type definitions for wildstring 1.0 // Project: https://github.com/deltreey/wildstring#readme // Definitions by: CiarĂ¡n Ingle // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare const wildstring: { wildcard: string; caseSensitive: boolean; match: (pattern: string, string: string) => boolean; replace: (pattern: string, strings: string | ReadonlyArray) => string; }; export {}; export = wildstring;