Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/packages / features / PromoCodes / typings.d.ts
Size: Mime:
import { PromoResponse } from '@skava/graphql-bindings';
export interface PromotionalItemType {
    identifier?: string;
    /** @deprecated */
    name?: string;
    /** use instead of name */
    value?: string;
}
export interface PromoGraphqlResponse {
    data?: {
        addPromo?: PromoResponse;
    };
}
export interface AddPromoInput {
    promoCode: string;
}