facturacionelectronicapy-ts-xmlgen
Version:
Genera el contenido del archivo XML del Documento electrónico exigido por la SET
19 lines (18 loc) • 468 B
TypeScript
import Table from '../helpers/Table';
export declare enum PrintedDocumentType {
FACTURA = 1,
NOTA_DE_CREDITO = 2,
NOTA_DE_DEBITO = 3,
NOTA_DE_REMISION = 4
}
declare const _default: Table<{
0: ["_id", PrintedDocumentType];
1: ["description", string];
}, {
0: PrintedDocumentType;
1: string;
}, PrintedDocumentType, Required<{
description?: string | undefined;
_id?: PrintedDocumentType | undefined;
}>>;
export default _default;