(private readonly snack: SnackReporter)
| 7 | |
| 8 | export class ClientStore extends BaseStore<IClient> { |
| 9 | public constructor(private readonly snack: SnackReporter) { |
| 10 | super(); |
| 11 | } |
| 12 | |
| 13 | protected requestItems = (): Promise<IClient[]> => |
| 14 | axios.get<IClient[]>(`${config.get('url')}client`).then((response) => response.data); |
nothing calls this directly
no outgoing calls
no test coverage detected