UNPKG

trello-sprinter

Version:

Provides summarizations of sprint activity in a Trello project

10 lines (9 loc) 203 B
/* * Representation of a Trello member in a board */ export const Member = function(board, data) { this.board = board; this.id = data.id; this.name = data.fullName; this.data = data; }