mirror of
https://github.com/siddharthvaddem/openscreen.git
synced 2026-08-29 03:08:30 +08:00
11 lines
218 B
TypeScript
11 lines
218 B
TypeScript
export type TestId =
|
|
| `gif-size-button-${string}`
|
|
| "export-button"
|
|
| "export-panel-button"
|
|
| "gif-format-button"
|
|
| "mp4-format-button";
|
|
|
|
export function getTestId(testId: TestId) {
|
|
return `testId-${testId}`;
|
|
}
|