Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
|
import type { RequiredSubscriptionPlans, Subscription } from './subscription';
|
|
|
|
export const enum Features {
|
|
Stashes = 'stashes',
|
|
Timeline = 'timeline',
|
|
Worktrees = 'worktrees',
|
|
}
|
|
|
|
export type FeatureAccess =
|
|
| { allowed: true; subscription: { current: Subscription; required?: undefined } }
|
|
| { allowed: false; subscription: { current: Subscription; required?: RequiredSubscriptionPlans } };
|
|
|
|
export const enum PlusFeatures {
|
|
Timeline = 'timeline',
|
|
Worktrees = 'worktrees',
|
|
}
|