9 lines
		
	
	
		
			274 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			274 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { LegacyFormatter } from './legacy.formatter.js';
 | 
						|
import * as formatLicense from '../format.license.js';
 | 
						|
 | 
						|
export class LicenseFormatter extends LegacyFormatter {
 | 
						|
  constructor(context: any, project: any) {
 | 
						|
    super(context, project, 'license', formatLicense);
 | 
						|
  }
 | 
						|
}
 |