portainer/app/react/docker/containers/CreateView/CommandsTab/index.ts

15 lines
427 B
TypeScript

import { validation } from './validation';
import { toRequest } from './toRequest';
import { toViewModel, getDefaultViewModel } from './toViewModel';
export { CommandsTab } from './CommandsTab';
export { validation as commandsTabValidation } from './validation';
export { type Values as CommandsTabValues } from './types';
export const commandsTabUtils = {
toRequest,
toViewModel,
validation,
getDefaultViewModel,
};