/**
 * IFileLaneContext
 */
export default interface IFileLaneContext {
    cwd: string;
    projectPath: string;
    output: string;
    [key: string]: any;
}
