Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
370 Bytes
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,
})