11 lines
253 B
TypeScript
11 lines
253 B
TypeScript
/**
|
|
* 项目相关工具函数
|
|
*/
|
|
import type { BackendProjectResponse, ProjectItem } from "./types"
|
|
|
|
export const toProjectItem = (item: BackendProjectResponse): ProjectItem => ({
|
|
id: item.id,
|
|
name: item.name,
|
|
description: item.description,
|
|
})
|