You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/react/docker/containers/CreateView/RestartPolicyTab/index.ts

14 lines
355 B

import { validation } from './validation';
import { toViewModel, getDefaultViewModel } from './toViewModel';
import { toRequest } from './toRequest';
export { RestartPolicyTab } from './RestartPolicyTab';
export { RestartPolicy } from './types';
export const restartPolicyTabUtils = {
toViewModel,
toRequest,
validation,
getDefaultViewModel,
};