UNPKG

@aws/pdk

Version:

All documentation is located at: https://aws.github.io/aws-pdk

6 lines (5 loc) 268 B
type Matcher = (input: string) => boolean; type MatcherWithIndex = (input: string) => number; export declare function createMatcher(patterns: string[] | string): Matcher; export declare function createMatcherWithIndex(patterns: string[]): MatcherWithIndex; export {};