Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 90x 90x 90x 90x | import type { NullableNumber, NullableString } from './helpers';
import type { ParsedKeyObjectV2 } from './Issuer';
export default class Key implements ParsedKeyObjectV2 {
public publicKey: NullableString;
public created: NullableNumber;
public revoked: NullableNumber;
public expires: NullableNumber;
constructor (publicKey: NullableString, created: NullableNumber, revoked: NullableNumber, expires: NullableNumber) {
this.publicKey = publicKey;
this.created = created;
this.revoked = revoked;
this.expires = expires;
}
}
|