mirror of
https://github.com/portainer/portainer.git
synced 2025-07-20 05:49:40 +02:00
7 lines
194 B
TypeScript
7 lines
194 B
TypeScript
import { array, SchemaOf, string } from 'yup';
|
|
|
|
import { Values } from './CapabilitiesTab';
|
|
|
|
export function validation(): SchemaOf<Values> {
|
|
return array(string().default('')).default([]);
|
|
}
|