1 | declare class Delegate {
|
2 | constructor(proto: object, target: string);
|
3 | method(name: string): Delegate;
|
4 | access(name: string): Delegate;
|
5 | getter(name: string): Delegate;
|
6 | setter(name: string): Delegate;
|
7 | fluent(name: string): Delegate;
|
8 | }
|
9 |
|
10 | declare function Delegate(proto: object, target: string): Delegate;
|
11 |
|
12 | export = Delegate;
|