From a9f9764b0c624258f40478491d5a9a0f06f3229f Mon Sep 17 00:00:00 2001 From: Adil Rakhaliyev <67043367+Bayheck@users.noreply.github.com> Date: Fri, 26 Jul 2024 11:49:04 +0500 Subject: [PATCH] update: change Metadata from type to interface (#8238) ## Purpose _Describe the problem you want to address or the feature you want to implement._ ## Approach _Describe how your changes address the issue or implement the desired functionality in as much detail as possible._ ## References closes #8231 ## Pre-Merge TODO - [ ] Write tests for your proposed changes - [ ] Make sure that existing tests do not fail Co-authored-by: Bayheck --- ts-defs-src/test-api/test-info.d.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ts-defs-src/test-api/test-info.d.ts b/ts-defs-src/test-api/test-info.d.ts index 35671b5a3af..89c08e4f1d5 100644 --- a/ts-defs-src/test-api/test-info.d.ts +++ b/ts-defs-src/test-api/test-info.d.ts @@ -1,7 +1,9 @@ // Test Info //---------------------------------------------------------------------------------------------------------------------- -type Metadata = Record; +interface Metadata { + [key: string]: unknown; +} interface TestInfo { name: string;