falcotura-atv-sdk
Version:
Librería (SDK) de Javascript/NodeJS para acceder al API de Administración Tributaria Virtual (ATV) del Ministerio de Hacienda.
19 lines (18 loc) • 426 B
TypeScript
type ClaveProps = {
countryCode: string;
docKeyType: string;
identifierType: string;
emitterIdentifier: string;
ceSituation: string;
consecutiveIdentifier: string;
securityCode: string;
branch: string;
terminal: string;
};
export declare class Clave {
private props;
get value(): string;
constructor(props: ClaveProps);
static create(props: ClaveProps): Clave;
}
export {};