5 lines
217 B
TypeScript
5 lines
217 B
TypeScript
import { MergeResult } from '../../../typings';
|
|
import { StringTask } from '../types';
|
|
import { EmptyTask } from './task';
|
|
export declare function mergeTask(customArgs: string[]): EmptyTask | StringTask<MergeResult>;
|