UNPKG

ipsos-components

Version:

Material Design components for Angular

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