Skip to content

Commit

Permalink
Using index signature to access index properties
Browse files Browse the repository at this point in the history
  • Loading branch information
marekdedic committed Sep 12, 2024
1 parent 8028319 commit 88b4576
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/backend/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { move } from "./move";

declare const global: google.script.PublicEndpoints;

global.doGet = doGet;
global.listFolders = listFolders;
global.listSharedDrives = listSharedDrives;
global.move = move;
global["doGet"] = doGet;
global["listFolders"] = listFolders;
global["listSharedDrives"] = listSharedDrives;
global["move"] = move;

0 comments on commit 88b4576

Please sign in to comment.