import { BlockObject, CodeObject, GetTextsByBoxFunc, MD5Func } from "./types"; /** * 将block处理为一个中间数据结构,供不同的generator使用 */ export declare function getBlockObject(block: any, md5Func: MD5Func, textsByBox: GetTextsByBoxFunc | undefined): Promise; /** * 处理code object,这里的每一行都是一个block * 这里没有使用map/promise.all,避免textsByBox这个外部函数在并发下的行为不可控 */ export declare function getCodeObject(block: any, data: any, md5Func: MD5Func, textsByBox: GetTextsByBoxFunc | undefined): Promise;