mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 15:29:42 +02:00
14 lines
356 B
TypeScript
14 lines
356 B
TypeScript
|
import { envVarValidation } from '@@/form-components/EnvironmentVariablesFieldset';
|
||
|
|
||
|
import { toRequest } from './toRequest';
|
||
|
import { toViewModel, getDefaultViewModel } from './toViewModel';
|
||
|
|
||
|
export { EnvVarsTab } from './EnvVarsTab';
|
||
|
|
||
|
export const envVarsTabUtils = {
|
||
|
toRequest,
|
||
|
toViewModel,
|
||
|
validation: envVarValidation,
|
||
|
getDefaultViewModel,
|
||
|
};
|