Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
359 Bytes
import { VersionProps } from '../../../adminjs-options.interface.js'
export const VERSIONS_INITIALIZE = 'VERSIONS_INITIALIZE'
export type InitializeVersionsResponse = {
type: typeof VERSIONS_INITIALIZE
data: VersionProps
}
export const initializeVersions = (data: VersionProps): InitializeVersionsResponse => ({
type: VERSIONS_INITIALIZE,
data,
})