This includes all tasks to construct a Dart tree, except for formatting, and reverse engineers/refactors the various copy tools for added more sanity.
		
			
				
	
	
		
			15 lines
		
	
	
		
			441 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			441 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/// <reference path="../typings/es6-promise/es6-promise.d.ts" />
 | 
						|
 | 
						|
interface FilterOptions {
 | 
						|
  extensions?: string[]
 | 
						|
}
 | 
						|
 | 
						|
declare class Filter {
 | 
						|
  constructor(inputTree: any, options?: FilterOptions);
 | 
						|
  processString(contents: string, relativePath: string): string;
 | 
						|
  // NB: This function is probably not intended as part of the public API
 | 
						|
  processFile(srcDir: string, destDir: string, relativePath: string): Promise<any>;
 | 
						|
}
 | 
						|
 | 
						|
export = Filter;
 |