UNPKG

spinjs

Version:

<p align="center"><a href="#"><img width="150" src="https://rawgit.com/sysgears/spin.js/master/logo.svg"></a></p>

17 lines (16 loc) 522 B
/// <reference types="webpack" /> import { Builder } from './Builder'; import { Configuration } from 'webpack'; export default class Spin { dev: boolean; test: boolean; cmd: string; builders: { [x: string]: Builder; }; options: any; depPlatforms: any; constructor(cmd: any, builders: any, options: any, depPlatforms: any); merge(config: Configuration, overrides: any): Configuration; mergeWithStrategy(strategy: any, config: Configuration, overrides: any): Configuration; }