Matching.d.ts 267 B

123456789
  1. import { MatchExtended, MatchingType } from './types';
  2. type Matchers = {
  3. [key: string]: MatchingType;
  4. };
  5. declare class Matching {
  6. readonly matchers: Matchers;
  7. match(password: string): MatchExtended[] | Promise<MatchExtended[]>;
  8. }
  9. export default Matching;