DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
650 Bytes
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 {};