@suluk/nano-stores - v0.1.3
    Preparing search index...

    Interface DiscountStore

    interface DiscountStore {
        $discount: ReadableAtom<AppliedDiscount | null>;
        get(): AppliedDiscount | null;
        apply(d: AppliedDiscount): void;
        clear(): void;
        reload(): void;
        destroy(): void;
    }
    Index

    Properties

    $discount: ReadableAtom<AppliedDiscount | null>

    Methods