mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-29 21:17:34 +00:00
16 lines
477 B
TypeScript
16 lines
477 B
TypeScript
// Type definitions for rollup-plugin-json 2.3
|
|
// Project: https://github.com/rollup/rollup-plugin-json#readme
|
|
// Definitions by: Andy Mockler <https://github.com/asmockler>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
import { Plugin } from 'rollup';
|
|
|
|
export interface Options {
|
|
include?: string | string[];
|
|
exclude?: string | string[];
|
|
preferConst?: boolean;
|
|
indent?: string;
|
|
}
|
|
|
|
export default function json(options?: Options): Plugin;
|