From 1fafc7a2fc63b9a9aafb2da4aa33f3db631e2711 Mon Sep 17 00:00:00 2001 From: Alan Agius Date: Mon, 11 Dec 2017 09:32:31 +0100 Subject: [PATCH] fix(rollup) add `VERSION` const --- types/rollup/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/rollup/index.d.ts b/types/rollup/index.d.ts index 80a74523a0..6fbb3efa1f 100644 --- a/types/rollup/index.d.ts +++ b/types/rollup/index.d.ts @@ -7,6 +7,7 @@ import { RawSourceMap } from 'source-map' import * as acorn from 'acorn' export type Format = 'amd' | 'cjs' | 'es' | 'iife' | 'umd' +export const VERSION: string; export interface SourceMap extends RawSourceMap { toString(): string