14 lines
405 B
TypeScript
14 lines
405 B
TypeScript
export declare type ParserCallback = (err?: Error | string) => void;
|
|
export interface ParserOptions {
|
|
force32?: boolean;
|
|
rename?: boolean;
|
|
verbose?: boolean;
|
|
version?: string;
|
|
type?: string;
|
|
logger?: Function;
|
|
dir?: string;
|
|
temp?: string;
|
|
url?: string;
|
|
}
|
|
export default function parserDownload(optionsOrVersion: ParserOptions | string, callback: ParserCallback): void;
|