export interface SkuInfo {
    name: string;
    id: number;
    active: boolean;
    disable: boolean;
    [props: string]: any;
}
