Security update for Core, with self-updated composer
[yaffs-website] / node_modules / uncss / node_modules / postcss / d.ts / map-generator.d.ts
1 import Root from './root';
2 export default class MapGenerator {
3     private stringify;
4     private root;
5     private opts;
6     private mapOpts;
7     private previousMaps;
8     private map;
9     private css;
10     constructor(stringify: any, root: Root, opts: any);
11     isMap(): boolean;
12     previous(): any;
13     isInline(): any;
14     isSourcesContent(): any;
15     clearAnnotation(): void;
16     setSourcesContent(): void;
17     applyPrevMaps(): void;
18     isAnnotation(): any;
19     addAnnotation(): void;
20     outputFile(): any;
21     generateMap(): any[];
22     relative(file: any): any;
23     sourcePath(node: any): any;
24     generateString(): void;
25     generate(): any[];
26 }