/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { type TypeData } from "./typeData.js"; export interface TestCaseTypeData extends TypeData { prefix: "old" | "current"; removed: boolean; } export declare function buildTestCase(getAsType: TestCaseTypeData, useType: TestCaseTypeData, isCompatible: boolean, typePreprocessor: string): string[]; //# sourceMappingURL=testGeneration.d.ts.map