mirror of
https://github.com/swc-project/swc.git
synced 2024-11-30 15:23:33 +03:00
af922d83e5
**Description:** This PR adds a name cache for the mangler. It's implemented using a `Mutex`, and it's exposed to JS as an experimental API. Note that JS API only provides an opaque object.
57 lines
2.1 KiB
TypeScript
57 lines
2.1 KiB
TypeScript
/* auto-generated by NAPI-RS */
|
|
/* eslint-disable */
|
|
|
|
export class Compiler {
|
|
constructor()
|
|
}
|
|
export type JsCompiler = Compiler
|
|
|
|
export declare function bundle(confItems: Buffer, signal?: AbortSignal | undefined | null): Promise<{ [index: string]: { code: string, map?: string } }>
|
|
|
|
export declare function getTargetTriple(): string
|
|
|
|
export declare function initCustomTraceSubscriber(traceOutFilePath?: string | undefined | null): void
|
|
|
|
export declare function minify(code: Buffer, opts: Buffer, extras: NapiMinifyExtra, signal?: AbortSignal | undefined | null): Promise<TransformOutput>
|
|
|
|
export declare function minifySync(code: Buffer, opts: Buffer, extras: NapiMinifyExtra): TransformOutput
|
|
|
|
export interface NapiMinifyExtra {
|
|
mangleNameCache?: object
|
|
}
|
|
|
|
export declare function newMangleNameCache(): object
|
|
|
|
export declare function parse(src: string, options: Buffer, filename?: string | undefined | null, signal?: AbortSignal | undefined | null): Promise<string>
|
|
|
|
export declare function parseFile(path: string, options: Buffer, signal?: AbortSignal | undefined | null): Promise<string>
|
|
|
|
export declare function parseFileSync(path: string, opts: Buffer): string
|
|
|
|
export declare function parseSync(src: string, opts: Buffer, filename?: string | undefined | null): string
|
|
|
|
export declare function print(programJson: string, options: Buffer, signal?: AbortSignal | undefined | null): Promise<TransformOutput>
|
|
|
|
export declare function printSync(program: string, options: Buffer): TransformOutput
|
|
|
|
export declare function transform(src: string, isModule: boolean, options: Buffer, signal?: AbortSignal | undefined | null): Promise<TransformOutput>
|
|
|
|
export declare function transformFile(src: string, isModule: boolean, options: Buffer, signal?: AbortSignal | undefined | null): Promise<TransformOutput>
|
|
|
|
export declare function transformFileSync(s: string, isModule: boolean, opts: Buffer): TransformOutput
|
|
|
|
export interface TransformOutput {
|
|
code: string
|
|
map?: string
|
|
output?: string
|
|
}
|
|
|
|
/** Hack for `Type Generation` */
|
|
export interface TransformOutput {
|
|
code: string
|
|
map?: string
|
|
}
|
|
|
|
export declare function transformSync(s: string, isModule: boolean, opts: Buffer): TransformOutput
|
|
|