@warp-drive/build-config
Version:
Provides Build Configuration for projects using WarpDrive or EmberData
12 lines • 517 B
TypeScript
declare module '@warp-drive/build-config/-private/utils/deprecations' {
import * as CURRENT_DEPRECATIONS from '@warp-drive/build-config/deprecation-versions.ts';
type MajorMinor = `${number}.${number}`;
type DeprecationFlag = keyof typeof CURRENT_DEPRECATIONS;
export function getDeprecations(compatVersion: MajorMinor | null | undefined, deprecations?: {
[key in DeprecationFlag]?: boolean;
}): {
[key in DeprecationFlag]: boolean;
};
export {};
}
//# sourceMappingURL=deprecations.d.ts.map