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
467 B
11 lines
467 B
import { TransformConfig } from './types';
|
|
/**
|
|
*
|
|
* Runs the transformations from an object we get from yeoman
|
|
*
|
|
* @param {Object} transformConfig - Configuration to transform
|
|
* @param {String} action - Action to be done on the given ast
|
|
* @returns {Promise} - A promise that writes each transform, runs prettier
|
|
* and writes the file
|
|
*/
|
|
export declare function runTransform(transformConfig: TransformConfig, action: string, generationPath: string): void;
|
|
|