Skip to content
This repository was archived by the owner on Jan 2, 2022. It is now read-only.

Commit ce2f02b

Browse files
committed
style: use property method signature syntax
Signed-off-by: Jonah Snider <[email protected]>
1 parent ad9ad4b commit ce2f02b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import {ReadonlyDeep} from 'type-fest';
33

44
interface NetlifyUtils {
55
cache: {
6-
restore(path: string, options?: Partial<{move: boolean}>): Promise<any>;
7-
save(path: string, options?: Partial<{digests: string[]; move: boolean; ttl: number}>): Promise<any>;
6+
restore: (path: string, options?: Partial<{move: boolean}>) => Promise<any>;
7+
save: (path: string, options?: Partial<{digests: string[]; move: boolean; ttl: number}>) => Promise<any>;
88
};
99
}
1010

0 commit comments

Comments
 (0)