mono/packages/discourse/dist/lib/markdown/Pattern.d.ts
2025-12-30 20:21:59 +01:00

8 lines
214 B
TypeScript

import { RegExCallback } from './types';
export declare class Pattern {
regex: RegExp;
replacement: RegExCallback;
constructor(regex: RegExp, replacement: any);
apply(raw: string): string;
}