ts-mls
Version:
[](https://github.com/LukaJCB/ts-mls/actions/workflows/ci.yml) [](https://badge.fury.io/js/ts-mls) [ • 384 B
TypeScript
import { Decoder } from "./codec/tlsDecoder";
import { Encoder } from "./codec/tlsEncoder";
import { ProposalOrRef } from "./proposalOrRefType";
import { UpdatePath } from "./updatePath";
export type Commit = {
proposals: ProposalOrRef[];
path: UpdatePath | undefined;
};
export declare const encodeCommit: Encoder<Commit>;
export declare const decodeCommit: Decoder<Commit>;