/** * @implements {Types.RevocationsStorage} */ export class RevocationsStorage implements Types.RevocationsStorage { /** * @type {Array} */ delegations: Array; /** * @type {Array} */ revocations: Array; /** * * @param {Types.RevocationQuery} ucans */ query(ucans: Types.RevocationQuery): Promise<{ ok: Types.MatchingRevocations; }>; /** * * @param {Types.Revocation} revocation */ add(revocation: Types.Revocation): Promise<{ ok: {}; }>; /** * @param {Types.Revocation} revocation */ reset(revocation: Types.Revocation): Promise<{ ok: {}; }>; } import * as Types from '../../types.js'; //# sourceMappingURL=revocations-storage.d.ts.map