@warp-drive/build-config
Version:
Provides Build Configuration for projects using WarpDrive or EmberData
6 lines (5 loc) • 364 B
TypeScript
import * as CURRENT_DEPRECATIONS from "../../deprecation-versions.js";
type MajorMinor = `${number}.${number}`;
type DeprecationFlag = keyof typeof CURRENT_DEPRECATIONS;
export declare function getDeprecations(compatVersion: MajorMinor | null | undefined, deprecations?: { [key in DeprecationFlag]? : boolean }): { [key in DeprecationFlag] : boolean };
export {};