Skip to content

Commit

Permalink
update: change Metadata from type to interface (#8238)
Browse files Browse the repository at this point in the history
<!--
Thank you for your contribution.

Before making a PR, please read our contributing guidelines at

https://github.com/DevExpress/testcafe/blob/master/CONTRIBUTING.md#code-contribution

We recommend creating a *draft* PR, so that you can mark it as 'ready
for review' when you are done.
-->

## 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 <[email protected]>
  • Loading branch information
Bayheck and Bayheck authored Jul 26, 2024
1 parent b35a5ac commit a9f9764
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ts-defs-src/test-api/test-info.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
// Test Info
//----------------------------------------------------------------------------------------------------------------------

type Metadata = Record<string, unknown>;
interface Metadata {
[key: string]: unknown;
}

interface TestInfo {
name: string;
Expand Down

0 comments on commit a9f9764

Please sign in to comment.