mirror of
https://github.com/portainer/portainer.git
synced 2025-07-21 22:39:41 +02:00
14 lines
395 B
TypeScript
14 lines
395 B
TypeScript
import { envVarValidation } from '@@/form-components/EnvironmentVariablesFieldset';
|
|
|
|
import { toRequest } from './toRequest';
|
|
import { toViewModel, getDefaultViewModel } from './toViewModel';
|
|
|
|
export { EnvVarsTab } from './EnvVarsTab';
|
|
export type { Values } from './types';
|
|
|
|
export const envVarsTabUtils = {
|
|
toRequest,
|
|
toViewModel,
|
|
validation: envVarValidation,
|
|
getDefaultViewModel,
|
|
};
|