import { TaskFunction } from "gulp";

/**
 * @inheritdoc
 */
declare global
{
    /**
     * Represents a gulp-task.
     */
    // eslint-disable-next-line @typescript-eslint/naming-convention
    interface Function extends Partial<TaskFunction>
    { }
}

export {};