Skip to content

Commit 6852ffb

Browse files
committed
Merge branch 'main' of https://github.com/Srabutdotcom/enum
2 parents 6ada5cf + 7fe4bb6 commit 6852ffb

13 files changed

+15
-15
lines changed

type/alert.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Represents alert levels in the protocol
33
* @see https://datatracker.ietf.org/doc/html/rfc8446#section-6
4-
* @version __VERSION__
4+
* @version 0.9.4
55
*/
66
export class AlertLevel extends Enum {
77
/** @type {AlertLevel} warning level (1) */
@@ -23,7 +23,7 @@ export class AlertLevel extends Enum {
2323
/**
2424
* Enum class representing various TLS alert descriptions based on RFC 8446.
2525
* @see https://datatracker.ietf.org/doc/html/rfc8446#section-6
26-
* @version __VERSION__
26+
* @version 0.9.4
2727
*/
2828
export class AlertDescription extends Enum {
2929
/**
@@ -158,7 +158,7 @@ export class AlertDescription extends Enum {
158158
get byte(): Uint8;
159159
}
160160
/**
161-
* @version __VERSION__
161+
* @version 0.9.4
162162
*/
163163
export declare class Alert extends Uint8Array {
164164
/**

type/bimap.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Represents a bidirectional map where keys and values can be interchanged.
3-
* @version __VERSION__
3+
* @version 0.9.4
44
*/
55
export declare class BiMap {
66
constructor();

type/certificatetype.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { Uint8 } from "../src/dep.ts";
55
* Represents TLS Certificate Types.
66
* @see https://datatracker.ietf.org/doc/html/rfc8446#section-4.2.7
77
* @extends {Enum}
8-
* @version __VERSION__
8+
* @version 0.9.4
99
*/
1010
export class CertificateType extends Enum {
1111
/** Certificate type X.509 */

type/cipher.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { Enum } from "../src/enum.js";
44
/**
55
* Represents a cipher suite used in TLS 1.3.
66
* The cipher suite includes the encryption algorithm, mode, and hash function.
7-
* @version __VERSION__
7+
* @version 0.9.4
88
*/
99
export class Cipher extends Enum {
1010
/**

type/contentype.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { Enum } from "../src/enum.js";
55
* Represents the higher-level protocol used to process the enclosed fragment.
66
* Defined in RFC 8446 Section 5.1.
77
* @see https://datatracker.ietf.org/doc/html/rfc8446#section-5.1
8-
* @version __VERSION__
8+
* @version 0.9.4
99
*/
1010
export class ContentType extends Enum {
1111
/** Represents an invalid ContentType (value 0). */

type/enum.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* }
1414
* }
1515
* ```
16-
* @version __VERSION__
16+
* @version 0.9.4
1717
*/
1818
export class Enum {
1919
/**

type/extensiontype.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { Enum } from "../src/enum.js";
44
/**
55
* Represents different TLS extension types.
66
* Each extension type is associated with a 16-bit value.
7-
* @version __VERSION__
7+
* @version 0.9.4
88
*/
99
export class ExtensionType extends Enum {
1010
/** Server Name Indication (SNI) - 0 */

type/handshaketype.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { Enum } from "../src/enum.js";
44
/**
55
* Represents TLS 1.3 Handshake message types as defined in RFC 8446 Section 4.
66
* @see https://datatracker.ietf.org/doc/html/rfc8446#section-4
7-
* @version __VERSION__
7+
* @version 0.9.4
88
*/
99
export declare class HandshakeType extends Enum {
1010
/**

type/keyupdate.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
should respond with its own KeyUpdate. If an implementation
55
receives any other value, it MUST terminate the connection with an
66
"illegal_parameter" alert.
7-
* @version __VERSION__
7+
* @version 0.9.4
88
*/
99
export class KeyUpdateRequest extends Enum {
1010
static UPDATE_NOT_REQUESTED: KeyUpdateRequest;

type/namedgroup.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Enum } from "./enum.d.ts";
22
import { Uint16 } from "../src/dep.ts";
33
/**
44
* Supported groups - @see https://datatracker.ietf.org/doc/html/rfc8446#section-4.2.7.
5-
* @version __VERSION__
5+
* @version 0.9.4
66
*/
77
export class NamedGroup extends Enum {
88
static SECP256R1: NamedGroup;

0 commit comments

Comments
 (0)