UNPKG

276 BTypeScriptView Raw
1import { MapOptions } from ".";
2import Source = require("./Source");
3
4/**
5 * Represents source code without SourceMap
6 */
7declare class RawSource extends Source {
8 constructor(value: string);
9 source(): string;
10 map(options: MapOptions): null;
11}
12
13export = RawSource;