mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-31 14:07:40 +00:00
14 lines
298 B
TypeScript
14 lines
298 B
TypeScript
import Resolver = require('./Resolver');
|
|
|
|
declare class DescriptionFilePlugin {
|
|
filenames: string[];
|
|
source: string;
|
|
target: string;
|
|
|
|
constructor(source: string, filenames: string[] | string, target: string);
|
|
|
|
apply(resolver: Resolver): void;
|
|
}
|
|
|
|
export = DescriptionFilePlugin;
|