@sentry/wizard
Version:
Sentry wizard helping you to configure your project
4 lines (3 loc) • 338 B
TypeScript
export type KitVersionBucket = 'none' | 'invalid' | '0.x' | '>=1.0.0 <1.24.0' | '>=1.24.0 <2.31.0' | '>=2.31.0';
export declare function getKitVersionBucket(version: string | undefined): KitVersionBucket;
export declare function getSvelteVersionBucket(version: string | undefined): 'none' | 'invalid' | '<3.0.0' | '3.x' | '4.x' | '>4.x';