Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
373 Bytes
import type { BrandingOptions } from '../../../adminjs-options.interface.js'
export const BRANDING_INITIALIZE = 'BRANDING_INITIALIZE'
export type InitializeBrandingResponse = {
type: typeof BRANDING_INITIALIZE
data: BrandingOptions
}
export const initializeBranding = (data: BrandingOptions): InitializeBrandingResponse => ({
type: BRANDING_INITIALIZE,
data,
})