@jake-story/trellor
TypeScript icon, indicating that this package has built-in type declarations

1.2.17 • Public • Published

Helper for Trello API

import { Trellor } from "@jake-story/trellor"

const trellor = new Trellor(API_KEY, API_TOKEN);

trellor.boards
            .get((Board[]))
            .add("board name", (Board))
            .find("board name", (Board[]))

trellor.board("boardId")
                    .get((Board))
                    .remove()
                    .clear()
                    .lists
                        .get((List[]))
                        .add("list name", (List))
                        .find("list name", (List[]))

trellor.list("listId")
                .clear()
                .remove()
                .card("cardId")
                    .remove()
                .cards
                    .get((Card[]))
                    .add("card name", (Card))

Readme

Keywords

Package Sidebar

Install

npm i @jake-story/trellor

Weekly Downloads

64

Version

1.2.17

License

MIT

Unpacked Size

11.6 kB

Total Files

4

Last publish

Collaborators

  • jake-story