UNPKG

@winner-fed/bundler-webpack

Version:

@winner-fed/bundler-webpack

13 lines (10 loc) 342 B
import { SourceAndMapMixin } from '.'; import Source = require('./Source'); /** * Prefix every line of the decorated Source with a provided string. */ declare class PrefixSource extends Source implements SourceAndMapMixin { constructor(prefix: Source | string, source: Source | string); source(): string; } export = PrefixSource;