export interface IStorage {
    isValid(paymentHash: string): Promise<boolean>;
    setValid(paymentHash: string, valid: boolean): Promise<void>;
}
