14 lines
536 B
JavaScript
14 lines
536 B
JavaScript
"use strict";
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const DocumentType_1 = __importDefault(require("../Customer/DocumentType"));
|
|
var DocumentType;
|
|
(function (DocumentType) {
|
|
class IDocumentType extends DocumentType_1.default.IDocumentType {
|
|
}
|
|
DocumentType.IDocumentType = IDocumentType;
|
|
})(DocumentType || (DocumentType = {}));
|
|
exports.default = DocumentType;
|