8 lines
273 B
TypeScript
8 lines
273 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);
|
|
}
|
|
} |