mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
This should allow a developer to write a gulpfile in TypeScript to compile a TypeScript project.
28 lines
866 B
TypeScript
28 lines
866 B
TypeScript
// Type definitions for gulp-sourcemaps
|
|
// Project: https://github.com/floridoo/gulp-sourcemaps
|
|
// Definitions by: Asana <https://asana.com>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
/// <reference path="../node/node.d.ts"/>
|
|
|
|
declare module "gulp-sourcemaps" {
|
|
interface InitOptions {
|
|
loadMaps?: boolean;
|
|
debug?: boolean;
|
|
}
|
|
|
|
interface WriteMapper {
|
|
(file: string): string;
|
|
}
|
|
|
|
interface WriteOptions {
|
|
addComment?: boolean;
|
|
includeContext?: boolean;
|
|
sourceRoot?: string | WriteMapper;
|
|
sourceMappingURLPrefix?: string | WriteMapper;
|
|
}
|
|
|
|
export function init(opts?: InitOptions): NodeJS.ReadWriteStream;
|
|
export function write(opts?: WriteOptions): NodeJS.ReadWriteStream;
|
|
export function write(path?: string, opts?: WriteOptions): NodeJS.ReadWriteStream;
|
|
} |