From 7b320c0048e4af02b57eb5416a0e765bb2a23738 Mon Sep 17 00:00:00 2001 From: Timothy Sullivan Date: Tue, 2 Jun 2020 15:25:38 -0700 Subject: [PATCH] remove local typing that has been provided by node module --- x-pack/plugins/apm/typings/numeral.d.ts | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 x-pack/plugins/apm/typings/numeral.d.ts diff --git a/x-pack/plugins/apm/typings/numeral.d.ts b/x-pack/plugins/apm/typings/numeral.d.ts deleted file mode 100644 index 2616639cdeff01..00000000000000 --- a/x-pack/plugins/apm/typings/numeral.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License; - * you may not use this file except in compliance with the Elastic License. - */ - -interface Numeral { - (value?: unknown): Numeral; - format: (pattern: string) => string; - unformat: (pattern: string) => number; - language: (key?: any, values?: any) => Numeral; - set: (value?: any) => Numeral; -} - -// eslint-disable-next-line no-var -declare var numeral: Numeral; - -declare module '@elastic/numeral' { - export = numeral; -}