web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
328 B

  1. 'use strict';
  2. const styles = require('./styles');
  3. const symbols = require('./symbols');
  4. const utils = require('./utils');
  5. module.exports = prompt => {
  6. prompt.options = utils.merge({}, prompt.options.theme, prompt.options);
  7. prompt.symbols = symbols.merge(prompt.options);
  8. prompt.styles = styles.merge(prompt.options);
  9. };