docs: Change API docs template to jsdoc-clean-theme (#8519)

This commit is contained in:
Lucas Coratger
2023-04-29 16:53:54 +02:00
committed by GitHub
parent 177891ea0e
commit 9e43bc2fa0
17 changed files with 393 additions and 79 deletions

View File

@@ -1,9 +1,7 @@
/*eslint no-unused-vars: "off"*/
/**
* @module Adapters
*/
/**
* @interface AnalyticsAdapter
* @module Adapters
*/
export class AnalyticsAdapter {
/**

View File

@@ -1,9 +1,7 @@
/*eslint no-unused-vars: "off"*/
/**
* @module Adapters
*/
/**
* @interface CacheAdapter
* @interface
* @memberof module:Adapters
*/
export class CacheAdapter {
/**

View File

@@ -1,9 +1,7 @@
/*eslint no-unused-vars: "off"*/
/**
* @module Adapters
*/
/**
* @interface MailAdapter
* @interface
* @memberof module:Adapters
* Mail Adapter prototype
* A MailAdapter should implement at least sendMail()
*/

View File

@@ -19,10 +19,8 @@
import type { Config } from '../../Config';
import Parse from 'parse/node';
/**
* @module Adapters
*/
/**
* @interface FilesAdapter
* @interface
* @memberof module:Adapters
*/
export class FilesAdapter {
/** Responsible for storing the file in order to be retrieved later by its filename

View File

@@ -1,9 +1,7 @@
/*eslint no-unused-vars: "off"*/
/**
* @module Adapters
*/
/**
* @interface LoggerAdapter
* @interface
* @memberof module:Adapters
* Logger Adapter
* Allows you to change the logger mechanism
* Default is WinstonLoggerAdapter.js

View File

@@ -1,9 +1,7 @@
/*eslint no-unused-vars: "off"*/
/**
* @module Adapters
*/
/**
* @interface PubSubAdapter
* @interface
* @memberof module:Adapters
*/
export class PubSubAdapter {
/**

View File

@@ -12,10 +12,8 @@
// android push and APNS for ios push.
/**
* @module Adapters
*/
/**
* @interface PushAdapter
* @interface
* @memberof module:Adapters
*/
export class PushAdapter {
/**

View File

@@ -11,10 +11,8 @@
// Default is WSAdapter. The above functions will be binded.
/**
* @module Adapters
*/
/**
* @interface WSSAdapter
* @interface
* @memberof module:Adapters
*/
export class WSSAdapter {
/**