TikTok-mGBA-Emulator/node/source/classes/gba-api/Coreadapter.ts

29 lines
969 B
TypeScript

/* eslint-disable */
/* tslint:disable */
/*
* ---------------------------------------------------------------
* ## THIS FILE WAS GENERATED VIA SWAGGER-TYPESCRIPT-API ##
* ## ##
* ## AUTHOR: acacode ##
* ## SOURCE: https://github.com/acacode/swagger-typescript-api ##
* ---------------------------------------------------------------
*/
import { HttpClient, RequestParams } from "./http-client";
export class Coreadapter<SecurityDataType = unknown> extends HttpClient<SecurityDataType> {
/**
* @description Reset the emulation and calls the reset callback.
*
* @tags CoreAdapter
* @name ResetCreate
* @summary Reset the emulation.
* @request POST:/coreadapter/reset
*/
resetCreate = (params: RequestParams = {}) =>
this.request<void, any>({
path: `/coreadapter/reset`,
method: "POST",
...params,
});
}