Preview: initialize-resources.ts
Size: 370 B
//proc/thread-self/root/home/byroehnu/.trash/node_modules11/adminjs/src/frontend/store/actions/initialize-resources.ts
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,
})
Directory Contents
Dirs: 0 × Files: 18