mirror of https://github.com/halo-dev/halo
34 lines
701 B
TypeScript
34 lines
701 B
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* Halo Next API
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* The version of the OpenAPI document: 2.0.0
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
/**
|
|
*
|
|
* @export
|
|
* @interface PluginRunningStateRequest
|
|
*/
|
|
export interface PluginRunningStateRequest {
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof PluginRunningStateRequest
|
|
*/
|
|
async?: boolean;
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof PluginRunningStateRequest
|
|
*/
|
|
enable?: boolean;
|
|
}
|