mirror of
https://github.com/thinkjs/thinkjs.git
synced 2026-01-18 14:26:56 +00:00
13 lines
223 B
TypeScript
13 lines
223 B
TypeScript
/// <reference path="../../../typings/thinkjs/think.d.ts" />
|
|
|
|
'use strict';
|
|
|
|
export default class extends think.service.base {
|
|
/**
|
|
* init
|
|
* @return {} []
|
|
*/
|
|
init(...args){
|
|
super.init(...args);
|
|
}
|
|
} |