UNPKG

@amirmarmul/waba-common

Version:

![GitHub release](https://img.shields.io/github/v/release/amirmarmul/waba-common?style=flat-square)

14 lines (13 loc) 288 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Identifier = void 0; class Identifier { value; constructor(value) { this.value = value; } toString() { return String(this.value); } } exports.Identifier = Identifier;