UNPKG

ts-mls

Version:

[![CI](https://github.com/LukaJCB/ts-mls/actions/workflows/ci.yml/badge.svg)](https://github.com/LukaJCB/ts-mls/actions/workflows/ci.yml) [![npm version](https://badge.fury.io/js/ts-mls.svg)](https://badge.fury.io/js/ts-mls) [![Coverage Status](https://co

12 lines 506 B
import { encodeProposalOrRefType, decodeProposalOrRefType } from "../../src/proposalOrRefType"; import { createRoundtripTest } from "./roundtrip"; describe("ProposalOrRefTypeName roundtrip", () => { const roundtrip = createRoundtripTest(encodeProposalOrRefType, decodeProposalOrRefType); test("roundtrips proposal", () => { roundtrip("proposal"); }); test("roundtrips reference", () => { roundtrip("reference"); }); }); //# sourceMappingURL=proposalOrRefType.test.js.map