mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 05:59:30 +08:00
10 lines
278 B
Text
10 lines
278 B
Text
/**
|
|
* @typedef {import('../types.js').Unsafe} Unsafe
|
|
*/
|
|
/**
|
|
* @param {Array<string>} stack
|
|
* @param {Unsafe} pattern
|
|
* @returns {boolean}
|
|
*/
|
|
export function patternInScope(stack: Array<string>, pattern: Unsafe): boolean;
|
|
export type Unsafe = import('../types.js').Unsafe;
|