mirror of
https://github.com/foomo/fender-ts.git
synced 2026-08-16 15:00:22 +00:00
9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
import { string } from 'superstruct';
|
|
import { fend, min, optional } from '../../../src';
|
|
|
|
export const Struct = fend(string(), optional, min(10));
|
|
|
|
export const data = '';
|
|
|
|
export const output = '';
|