/** * Deprecation warning about a specific feature. * Only available in developement mode (global.NODE_ENV=development) */ export type Deprecation = { /** * Version since the feature is deprecated */ version: string; /** * Information about the deprecation, replacement, etc. */ message: string; };