File size: 345 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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,
})
|