File size: 370 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { ResourceJSON } from '../../interfaces/index.js'

export const RESOURCES_INITIALIZE = 'RESOURCES_INITIALIZE'

export type InitializeResourcesResponse = {
  type: typeof RESOURCES_INITIALIZE;
  data: Array<ResourceJSON>;
}

export const initializeResources = (data: Array<ResourceJSON>): InitializeResourcesResponse => ({
  type: RESOURCES_INITIALIZE,
  data,
})