UNPKG

@salla.sa/twilight-components

Version:
20 lines (19 loc) 379 B
export interface Scope { id: number; name: string; selected: boolean; } export declare enum ModeType { DEFAULT = "default", AVAILABILITY = "availability" } export interface ProductAvailability { name: string; selected: boolean; availability: Availability; } export interface Availability { label: string; key: string; color: string; }