Urara-Blog/node_modules/.pnpm-store/v3/files/a1/533ee5175a7fdb5fb1e00fe975ef5d1e3ff60e2b146c6bbd14126a7f99f6dd986379a6b18210ac8dcc023583264360d21a3a2110229a039211639e6a15e22e
2022-08-14 01:14:53 +08:00

4 lines
372 B
Text

import { MappedCode } from '../utils/mapped_code';
import { Source } from './types';
export declare function slice_source(code_slice: string, offset: number, { file_basename, filename, get_location }: Source): Source;
export declare function replace_in_code(regex: RegExp, get_replacement: (...match: any[]) => Promise<MappedCode>, location: Source): Promise<MappedCode>;