mirror of https://github.com/portainer/portainer
14 lines
359 B
TypeScript
14 lines
359 B
TypeScript
|
import { validation } from './validation';
|
||
|
import { toRequest } from './toRequest';
|
||
|
import { toViewModel, getDefaultViewModel } from './toViewModel';
|
||
|
|
||
|
export { CommandsTab } from './CommandsTab';
|
||
|
export { type Values as CommandsTabValues } from './types';
|
||
|
|
||
|
export const commandsTabUtils = {
|
||
|
toRequest,
|
||
|
toViewModel,
|
||
|
validation,
|
||
|
getDefaultViewModel,
|
||
|
};
|