Last change
on this file since e29cc2e was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
883 bytes
|
Line | |
---|
1 | /**
|
---|
2 | * @license
|
---|
3 | * Copyright Google LLC All Rights Reserved.
|
---|
4 | *
|
---|
5 | * Use of this source code is governed by an MIT-style license that can be
|
---|
6 | * found in the LICENSE file at https://angular.io/license
|
---|
7 | */
|
---|
8 | export declare type SourceMap = {
|
---|
9 | version: number;
|
---|
10 | file?: string;
|
---|
11 | sourceRoot: string;
|
---|
12 | sources: string[];
|
---|
13 | sourcesContent: (string | null)[];
|
---|
14 | mappings: string;
|
---|
15 | };
|
---|
16 | export declare class SourceMapGenerator {
|
---|
17 | private file;
|
---|
18 | private sourcesContent;
|
---|
19 | private lines;
|
---|
20 | private lastCol0;
|
---|
21 | private hasMappings;
|
---|
22 | constructor(file?: string | null);
|
---|
23 | addSource(url: string, content?: string | null): this;
|
---|
24 | addLine(): this;
|
---|
25 | addMapping(col0: number, sourceUrl?: string, sourceLine0?: number, sourceCol0?: number): this;
|
---|
26 | toJSON(): SourceMap | null;
|
---|
27 | toJsComment(): string;
|
---|
28 | }
|
---|
29 | export declare function toBase64String(value: string): string;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.