12 lines
263 B
TypeScript
12 lines
263 B
TypeScript
import LarkDriveService from "../../services/lark/drive"
|
|
|
|
const service = new LarkDriveService("egg", "")
|
|
|
|
const res = await service.createFile(
|
|
"D6ETfzaU9lN08adVDz3kjLey4Bx",
|
|
"xxx 项目 KV管理器",
|
|
"bitable"
|
|
)
|
|
|
|
console.log(JSON.stringify(res, null, 2))
|