Skip to content

Commit c1a38ab

Browse files
committed
♻️ Add explicit return type (#1726)
1 parent 2be4dd1 commit c1a38ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/stores/replenishment_workbook.svelte.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ class ReplenishmentWorkBooksStore {
2929
}
3030
}
3131

32-
canView() {
32+
canView(): boolean {
3333
return this.isShown;
3434
}
3535

36-
toggleView() {
36+
toggleView(): void {
3737
this.isShown = !this.isShown;
3838

3939
if (browser) {

0 commit comments

Comments
 (0)