UNPKG

@peculiar/asn1-x509

Version:

ASN.1 schema of `Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile` (RFC5280)

11 lines (10 loc) 288 B
import { GeneralName } from "./general_name"; import { AsnArray } from "@peculiar/asn1-schema"; /** * ```asn1 * GeneralNames ::= SEQUENCE SIZE (1..MAX) OF GeneralName * ``` */ export declare class GeneralNames extends AsnArray<GeneralName> { constructor(items?: GeneralName[]); }