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