UNPKG

asn1-ts

Version:

ASN.1 encoding and decoding, including BER, CER, and DER.

8 lines (7 loc) 229 B
import { INTEGER } from "../../macros.mjs"; export default class DATE_ENCODING { readonly year: INTEGER; readonly month: INTEGER; readonly day: INTEGER; constructor(year: INTEGER, month: INTEGER, day: INTEGER); }