// This import does not have any type definitions.const gulpRunSequence = require('run-sequence');
/** Create a task that's a sequence of other tasks. */exportfunctionsequenceTask(...args: any[]) {
return(done: any) => {
gulpRunSequence(
...args,
done
);
};
}