mirror of
https://github.com/thinkjs/thinkjs.git
synced 2026-01-25 14:42:47 +00:00
18 lines
399 B
JavaScript
18 lines
399 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* think.adapter.base class
|
|
* all adapter will be inherit this class
|
|
*/
|
|
export default class extends think.base {
|
|
/**
|
|
* parse config when config has parser function
|
|
* @param {Object} config []
|
|
* @param {Object} extra []
|
|
* @param {String} type []
|
|
* @return {Object} []
|
|
*/
|
|
parseConfig(...configs){
|
|
return think.parseConfig(...configs);
|
|
}
|
|
} |