map-generator.d.ts 655 B

1234567891011121314151617181920212223242526
  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. }