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