timpla
Version:
An optimal website development experience for [server-side] web frameworks.
23 lines (22 loc) • 1.17 kB
TypeScript
/**
* gulpfile
*/
/// <reference types="undertaker" />
declare const clean: import("undertaker").TaskFunction;
declare const openAnalyzer: import("undertaker").TaskFunction;
declare const javascripts: import("undertaker").TaskFunction;
declare const rev: import("undertaker").TaskFunction;
declare const sizeReport: import("undertaker").TaskFunction;
declare const init: import("undertaker").TaskFunction;
declare const initJS: import("undertaker").TaskFunction;
declare const initConfig: import("undertaker").TaskFunction;
declare const fonts: import("undertaker").TaskFunction;
declare const images: import("undertaker").TaskFunction;
declare const staticFiles: import("undertaker").TaskFunction;
declare const html: import("undertaker").TaskFunction;
declare const svg: import("undertaker").TaskFunction;
declare const stylesheets: import("undertaker").TaskFunction;
declare const development: import("undertaker").TaskFunction;
declare const build: import("undertaker").TaskFunction;
export { build, fonts, clean, javascripts, rev, init, initJS, initConfig, sizeReport, images, staticFiles, html, svg, stylesheets, openAnalyzer, };
export default development;