mirror of https://github.com/portainer/portainer
14 lines
355 B
TypeScript
14 lines
355 B
TypeScript
|
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,
|
||
|
};
|