Adding nodejs package

This commit is contained in:
Mose Mueller
2023-04-10 16:52:23 +02:00
parent cfad1e20c4
commit 0ca8374278
7 changed files with 532 additions and 0 deletions

View File

@ -0,0 +1,10 @@
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export type ApiResult = {
readonly url: string;
readonly ok: boolean;
readonly status: number;
readonly statusText: string;
readonly body: any;
};