UNPKG
template-syncer
Version:
latest (1.2.0)
1.2.0
1.1.3
1.1.2
1.1.1
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
智能模板同步工具 - 让你的项目与模板仓库保持同步,支持智能合并、差异对比和交互式更新
github.com/IceyWu/template-syncer
IceyWu/template-syncer
template-syncer
/
lib
/
ui
/
tree.d.ts
10 lines
(9 loc)
•
260 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
type
{
FileChange
}
from
'../types'
;
/** * 生成文件树字符串 */
export
declare
function
formatFileTree
(
files
:
FileChange
[]
):
string
;
/** * 按分类分组并生成树 */
export
declare
function
formatGroupedTree
(
files
:
FileChange
[]
):
string
;