mirror of
https://github.com/portainer/portainer.git
synced 2025-07-22 14:59:41 +02:00
15 lines
395 B
TypeScript
15 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,
|
||
|
};
|