File size: 650 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import Plugin = require('./index');
import { InputNode, TransformNodeInfo, CallbackObject } from 'broccoli-node-api';
import { MapSeriesIterator } from './interfaces';
interface PluginWithDescription extends Plugin {
description?: string;
}
export default class ReadCompat {
pluginInterface: TransformNodeInfo;
inputPaths: string[];
inputBasePath: string;
cachePath?: string;
outputPath: string;
private _priorBuildInputNodeOutputPaths;
callbackObject: CallbackObject;
constructor(plugin: PluginWithDescription);
read(readTree: MapSeriesIterator<InputNode>): Promise<string>;
cleanup(): void;
}
export {};
|