UNPKG

hexo-util

Version:

Utilities for Hexo.

7 lines (6 loc) 184 B
declare class Pattern { match: (str: string) => any; constructor(rule: Pattern | ((str: string) => any) | RegExp | string); test(str: string): boolean; } export = Pattern;