mirror of
https://github.com/stjornleysi/telegram_glpi.git
synced 2026-01-20 05:50:40 +00:00
14 lines
401 B
JavaScript
14 lines
401 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.deunionize = void 0;
|
|
/**
|
|
* Expose properties from all union variants.
|
|
* @deprectated
|
|
* @see https://github.com/telegraf/telegraf/issues/1388#issuecomment-791573609
|
|
* @see https://millsp.github.io/ts-toolbelt/modules/union_strict.html
|
|
*/
|
|
function deunionize(t) {
|
|
return t;
|
|
}
|
|
exports.deunionize = deunionize;
|