@types/webpack-sources
Advanced tools
Comparing version 0.1.1 to 0.1.2
@@ -1,13 +0,12 @@ | ||
// Type definitions for webpack-sources v0.1.2 | ||
// Type definitions for webpack-sources 0.1 | ||
// Project: https://github.com/webpack/webpack-sources | ||
// Definitions by: e-cloud <http://github.com/e-cloud> | ||
// Chris Eppstein <http://github.com/chriseppstein> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
/// <reference types="source-map" /> | ||
/// <reference types="source-list-map" /> | ||
/// <reference types="node" /> | ||
import { Hash } from 'crypto' | ||
import { SourceNode, RawSourceMap, SourceMapGenerator } from 'source-map' | ||
import { SourceListMap } from 'source-list-map' | ||
import { Hash } from 'crypto'; | ||
import { SourceNode, RawSourceMap, SourceMapGenerator } from 'source-map'; | ||
import { SourceListMap } from 'source-list-map'; | ||
@@ -35,3 +34,3 @@ export abstract class Source { | ||
interface SourceAndMapMixin { | ||
export interface SourceAndMapMixin { | ||
map(options: { columns?: boolean }): RawSourceMap; | ||
@@ -71,5 +70,5 @@ sourceAndMap(options: { columns?: boolean }): { | ||
export class ConcatSource extends Source implements SourceAndMapMixin { | ||
children: (string | Source)[]; | ||
children: Array<(string | Source)>; | ||
constructor(...args: (string | Source)[]); | ||
constructor(...args: Array<(string | Source)>); | ||
@@ -192,3 +191,6 @@ add(item: string | Source): void; | ||
constructor( | ||
value: string, name: string, sourceMap: SourceMapGenerator | RawSourceMap, originalSource: string, | ||
value: string, | ||
name: string, | ||
sourceMap: SourceMapGenerator | RawSourceMap, | ||
originalSource?: string, | ||
innerSourceMap?: RawSourceMap | ||
@@ -195,0 +197,0 @@ ); |
{ | ||
"name": "@types/webpack-sources", | ||
"version": "0.1.1", | ||
"description": "TypeScript definitions for webpack-sources v0.1.2", | ||
"version": "0.1.2", | ||
"description": "TypeScript definitions for webpack-sources", | ||
"license": "MIT", | ||
"author": "e-cloud <http://github.com/e-cloud>", | ||
"contributors": [ | ||
{ | ||
"name": "e-cloud", | ||
"url": "http://github.com/e-cloud" | ||
}, | ||
{ | ||
"name": "Chris Eppstein", | ||
"url": "http://github.com/chriseppstein" | ||
} | ||
], | ||
"main": "", | ||
@@ -14,9 +23,9 @@ "repository": { | ||
"dependencies": { | ||
"@types/source-map": "*", | ||
"@types/source-list-map": "*", | ||
"@types/source-map": "*", | ||
"@types/node": "*" | ||
}, | ||
"peerDependencies": {}, | ||
"typings": "index.d.ts", | ||
"typesPublisherContentHash": "8ae6bbf6a437e5285fe4285574994f8afba07a719466837625ab57ebfb00077f" | ||
"typesPublisherContentHash": "7d14b985ac2c7d6c6fcac068b379b98c2b0f5b1844d8885a2ac04224748bd3d8", | ||
"typeScriptVersion": "2.0" | ||
} |
@@ -5,15 +5,13 @@ # Installation | ||
# Summary | ||
This package contains type definitions for webpack-sources v0.1.2 (https://github.com/webpack/webpack-sources). | ||
This package contains type definitions for webpack-sources (https://github.com/webpack/webpack-sources). | ||
# Details | ||
Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/types-2.0/webpack-sources | ||
Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/webpack-sources | ||
Additional Details | ||
* Last updated: Thu, 10 Nov 2016 12:27:28 GMT | ||
* File structure: ProperModule | ||
* Library Dependencies: node, source-list-map, source-map | ||
* Module Dependencies: crypto, source-list-map, source-map | ||
* Last updated: Mon, 10 Jul 2017 14:15:41 GMT | ||
* Dependencies: crypto, source-map, source-list-map, node | ||
* Global values: none | ||
# Credits | ||
These definitions were written by e-cloud <http://github.com/e-cloud>. | ||
These definitions were written by e-cloud <http://github.com/e-cloud>, Chris Eppstein <http://github.com/chriseppstein>. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7428
138
17