mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 03:29:30 +08:00
9 lines
222 B
Text
9 lines
222 B
Text
/**
|
|
* @typedef {import('../types.js').Unsafe} Unsafe
|
|
*/
|
|
/**
|
|
* @param {Unsafe} pattern
|
|
* @returns {RegExp}
|
|
*/
|
|
export function patternCompile(pattern: Unsafe): RegExp;
|
|
export type Unsafe = import('../types.js').Unsafe;
|