9 lines
322 B
TypeScript
9 lines
322 B
TypeScript
|
import type DERObject from './DERObject.js';
|
||
|
import type ObjectIdentifier from './ObjectIdentifier.js';
|
||
|
export default class Attribute implements DERObject {
|
||
|
attrType: ObjectIdentifier;
|
||
|
attrValues: DERObject[];
|
||
|
constructor(attrType: ObjectIdentifier, attrValues: DERObject[]);
|
||
|
toDER(): number[];
|
||
|
}
|