summaryrefslogtreecommitdiff
path: root/includes/external/matrix/node_modules/matrix-js-sdk/lib/errors.d.ts
blob: 3cc9ee1f107a9c9e4f40f8b9224f1908b830c702 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export declare enum InvalidStoreState {
    ToggledLazyLoading = 0
}
export declare class InvalidStoreError extends Error {
    readonly reason: InvalidStoreState;
    readonly value: any;
    static TOGGLED_LAZY_LOADING: InvalidStoreState;
    constructor(reason: InvalidStoreState, value: any);
}
export declare enum InvalidCryptoStoreState {
    TooNew = "TOO_NEW"
}
export declare class InvalidCryptoStoreError extends Error {
    readonly reason: InvalidCryptoStoreState;
    static TOO_NEW: InvalidCryptoStoreState;
    constructor(reason: InvalidCryptoStoreState);
}
export declare class KeySignatureUploadError extends Error {
    readonly value: any;
    constructor(message: string, value: any);
}
//# sourceMappingURL=errors.d.ts.map