NeahNew/node_modules/resedit/dist/sign/data/Attribute.d.ts
2025-05-06 22:43:27 +02:00

9 lines
312 B
TypeScript

import DERObject from './DERObject.js';
import ObjectIdentifier from './ObjectIdentifier.js';
export default class Attribute implements DERObject {
attrType: ObjectIdentifier;
attrValues: DERObject[];
constructor(attrType: ObjectIdentifier, attrValues: DERObject[]);
toDER(): number[];
}