From 32dbd1fe32eeb5404b316772f7b0a06e288e7f7b Mon Sep 17 00:00:00 2001 From: Quynh Nguyen Date: Fri, 15 May 2020 09:41:59 -0500 Subject: [PATCH] [ML] Add declaration file for job_list's utils --- .../application/jobs/jobs_list/components/utils.d.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 x-pack/plugins/ml/public/application/jobs/jobs_list/components/utils.d.ts diff --git a/x-pack/plugins/ml/public/application/jobs/jobs_list/components/utils.d.ts b/x-pack/plugins/ml/public/application/jobs/jobs_list/components/utils.d.ts new file mode 100644 index 0000000000000..5f72d155cbd5a --- /dev/null +++ b/x-pack/plugins/ml/public/application/jobs/jobs_list/components/utils.d.ts @@ -0,0 +1,7 @@ +/* + * 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. + */ +export function getSelectedJobIdFromUrl(str: string): string; +export function clearSelectedJobIdFromUrl(str: string): void;