Preview: initialize-theme.ts
Size: 333 B
//proc/thread-self/root/home/byroehnu/.trash/node_modules11/adminjs/src/frontend/store/actions/initialize-theme.ts
import type { ThemeInState } from '../reducers/themeReducer.js'
export const THEME_INITIALIZE = 'THEME_INITIALIZE'
export type initializeThemeResponse = {
type: typeof THEME_INITIALIZE
data: ThemeInState
}
export const initializeTheme = (data: ThemeInState): initializeThemeResponse => ({
type: THEME_INITIALIZE,
data,
})
Directory Contents
Dirs: 0 × Files: 18