mirror of
https://github.com/mivodev/mivodev.github.io.git
synced 2026-01-26 21:41:53 +07:00
18 lines
473 B
TypeScript
18 lines
473 B
TypeScript
export type NamedCapturingGroupsMap = Map<string, {
|
|
isUnique: boolean;
|
|
contents?: string;
|
|
groupNum?: number;
|
|
numCaptures?: number;
|
|
}>;
|
|
/**
|
|
@import {PluginData, PluginResult} from './regex.js';
|
|
*/
|
|
/**
|
|
@param {string} expression
|
|
@param {PluginData} [data]
|
|
@returns {PluginResult}
|
|
*/
|
|
export function subroutines(expression: string, data?: PluginData): PluginResult;
|
|
import type { PluginData } from './regex.js';
|
|
import type { PluginResult } from './regex.js';
|