tagGroup(標籤群組)
透過 eagle.tagGroup API 可以方便存取當前應用中的標籤群組。
// 取得所有標籤群組
const tagGroups = (await eagle.tagGroup.get());方法
get()
const tagGroups = (await eagle.tagGroup.get());create(options)
await eagle.tagGroup.create({
name: "new group",
color: "red",
tags: ["tag1", "tag2"],
description: "群組描述" // Eagle 4.0 build18+
});save()
remove()
addTags(options)
removeTags(options)
Last updated