mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
23 lines
618 B
TypeScript
23 lines
618 B
TypeScript
// Type definitions for dts-bundle
|
|
// Project: https://github.com/TypeStrong/dts-bundle
|
|
// Definitions by: Asana <https://asana.com>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
declare module "dts-bundle" {
|
|
interface Options {
|
|
name: string;
|
|
main: string;
|
|
baseDir?: string;
|
|
exclude?: RegExp;
|
|
externals?: boolean;
|
|
indent?: string;
|
|
newLine?: string;
|
|
out?: string;
|
|
prefix?: string;
|
|
removeSource?: boolean;
|
|
separator?: string;
|
|
verbose?: boolean;
|
|
}
|
|
|
|
export function bundle(opts: Options): void;
|
|
} |