import type * as ts from 'typescript/lib/tsserverlibrary'; /** * 从项目中提取 set_config 配置的类型信息 */ export declare function extract_config_from_project(ts_module: typeof ts, program: ts.Program, logger: ts.server.Logger): ExtractedConfig; export interface ExtractedConfig { units: string[]; shortcut_prefix: string; }