@salla.sa/twilight-components
Version:
Salla Web Component
20 lines (19 loc) • 379 B
TypeScript
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;
}