UNPKG
d-utils
Version:
beta (4.0.0-beta)
latest (4.0.3)
4.0.3
4.0.2
4.0.1
4.0.0
4.0.0-beta
3.0.2
3.0.1
3.0.0
2.3.3
2.3.1
2.3.0
2.2.0
2.1.1
2.1.0
2.0.0
1.4.0
1.3.0
1.2.0
1.1.2
1.1.1
1.1.0
1.0.0
0.0.1
0.0.0
d-utils
d-utils
/
dist
/
umd
/
decorator
/
index.d.ts
14 lines
(13 loc)
•
379 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
declare
class
Decorator
{
/** * 装饰器,作用在类的方法上 * 方法的 log 信息 */
static
log
(target: any, name: any, descriptor: any)
: void;
/** * 装饰器,作用在类的方法上 * 方法执行时间 */
static
fnTime
(target: any, name: any, descriptor: any)
: object | void;
}
export
default
Decorator;