resourcePath: async()

in web/src/services/API/my-app-api.ts [10:17]


  resourcePath: async (): Promise<MyAppAPIResponse> => {
    const subscriptionResponse: MyAppAPIResponse =
      await API.post('MyAppAPI', 'ResourcePath', {
        body: {
        }
      });
    return subscriptionResponse;
  },