You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
336 B
7 lines
336 B
/**
|
|
* 将模板字符串扁平化处理,转换为 Service 类型定义
|
|
* @param template - 包含 Service 类型定义的模板字符串
|
|
* @returns 处理后的 Service 类型定义字符串
|
|
* @throws {Error} 当模板中找不到 Service 类型定义时抛出错误
|
|
*/
|
|
export declare function flatten(template: string): string;
|
|
|