figgo
Version:
A CLI tool make your design tokens stay up to date with your Figma design styleguide
21 lines • 478 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class Board {
constructor(boardName) {
this.boardName = boardName;
}
setId(id) {
this.id = id;
}
setOutputDir(outputDir) {
this.outputDir = outputDir;
}
setOutputFormat(outputFormat) {
this.outputFormat = outputFormat;
}
setToken(token) {
this.token = token;
}
}
exports.default = Board;
//# sourceMappingURL=board.js.map