Fix lazy.ts in payments lint

This commit is contained in:
junderw 2019-03-07 12:33:47 +09:00
parent 389ec8cb33
commit db937f8110
No known key found for this signature in database
GPG key ID: B256185D3A971908
3 changed files with 25 additions and 25 deletions
types/payments

View file

@ -1,2 +1,2 @@
export declare function prop(object: Object, name: string, f: () => any): void;
export declare function prop(object: {}, name: string, f: () => any): void;
export declare function value<T>(f: () => T): () => T;