Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
345 Bytes
import { AdminPage } from '../../../adminjs-options.interface.js'
export const PAGES_INITIALIZE = 'PAGES_INITIALIZE'
export type InitializePagesResponse = {
type: typeof PAGES_INITIALIZE;
data: Array<AdminPage>;
}
export const initializePages = (data: Array<AdminPage>): InitializePagesResponse => ({
type: PAGES_INITIALIZE,
data,
})