mirror of
https://github.com/cloudmaker97/TikTok-mGBA-Emulator.git
synced 2025-12-05 23:48:38 +00:00
29 lines
969 B
TypeScript
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,
|
|
});
|
|
}
|