mirror of https://github.com/portainer/portainer
8 lines
194 B
TypeScript
8 lines
194 B
TypeScript
![]() |
import { array, SchemaOf, string } from 'yup';
|
||
|
|
||
|
import { Values } from './CapabilitiesTab';
|
||
|
|
||
|
export function validation(): SchemaOf<Values> {
|
||
|
return array(string().default('')).default([]);
|
||
|
}
|