-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
19a4404
commit 0539163
Showing
2 changed files
with
76 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
declare module "magic-string" { | ||
export interface BundleOptions { | ||
intro?: string; | ||
separator?: string; | ||
} | ||
|
||
export interface SourceMapOptions { | ||
hires: boolean; | ||
file: string; | ||
sources: string[]; | ||
sourcesContent: string; | ||
includeContent: boolean; | ||
names: string[]; | ||
mappings: string[]; | ||
} | ||
|
||
class SourceMap { | ||
constructor(properties: SourceMapOptions); | ||
toString(): string; | ||
toUrl(): string; | ||
} | ||
|
||
export class Bundle { | ||
constructor(options?: BundleOptions); | ||
addSource(source: MagicString | { filename?: string, content: MagicString }): Bundle; | ||
append(str: string, options: BundleOptions): Bundle; | ||
clone(): Bundle; | ||
generateMap(options?: SourceMapOptions): SourceMap; | ||
getIndentString(): string; | ||
indent(indentStr: string): Bundle; | ||
prepend(str: string): Bundle; | ||
toString(): string; | ||
trimLines(): string; | ||
trim(charType: string): string; | ||
trimStart(charType: string): Bundle; | ||
trimEnd(charType: string): Bundle; | ||
} | ||
|
||
export interface MagicStringOptions { | ||
filename: string, | ||
indentExclusionRanges: any; // TODO | ||
} | ||
|
||
export interface IndentOptions { | ||
exclude: any; // TODO | ||
indentStart: boolean; | ||
} | ||
|
||
export interface OverwriteOptions { | ||
storeName: boolean; | ||
contentOnly: boolean; | ||
} | ||
|
||
export default class MagicString { | ||
constructor(str: string, options?: MagicStringOptions); | ||
addSourcemapLocation(char: string): void; | ||
append(content: string): MagicString; | ||
appendLeft(index: number, content: string): MagicString; | ||
appendRight(index: number, content: string): MagicString; | ||
clone(): MagicString; | ||
generateMap(options?: SourceMapOptions); | ||
getIndentString(): string; | ||
|
||
indent(options?): MagicString; | ||
indent(indentStr: string, options: IndentOptions): MagicString; | ||
|
||
move(start: number, end: number, index: number): MagicString; | ||
overwrite(start: number, end: number, content: string, options: boolean | OverwriteOptions): MagicString; | ||
prepend(content: string): MagicString; | ||
prependLeft(index: number, content: string): MagicString; | ||
prependRight(index: number, content: string): MagicString; | ||
remove(start: number, end: number): MagicString; | ||
slice(start: number, end: number): string; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters