mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2025-08-14 12:31:01 +01:00
13 lines
281 B
CoffeeScript
13 lines
281 B
CoffeeScript
###
|
|
Definition of the WordGenerator class.
|
|
@module generators/word-generator
|
|
@license MIT. See LICENSE.md for details.
|
|
###
|
|
|
|
|
|
TemplateGenerator = require './template-generator'
|
|
|
|
module.exports = class WordGenerator extends TemplateGenerator
|
|
|
|
constructor: () -> super 'doc', 'xml'
|