( fc: typeof FastCheck, ctx: Annotations.ToArbitrary.Context, terminal: FastCheck.Arbitrary<T> | undefined, arbitrary: FastCheck.Arbitrary<T> )
| 9672 | */ |
| 9673 | export interface Trimmed extends String { |
| 9674 | readonly "Rebuild": Trimmed |
| 9675 | } |
| 9676 | /** |
| 9677 | * Schema for strings that contains no leading or trailing whitespaces. |
| 9678 | * |
| 9679 | * @category schemas |
| 9680 | * @since 3.10.0 |
| 9681 | */ |
| 9682 | export const Trimmed: Trimmed = String.check(isTrimmed()) |
| 9683 | /** |
| 9684 | * Type-level representation of {@link Trim}. |
| 9685 | * |
| 9686 | * @category models |
| 9687 | * @since 3.10.0 |
| 9688 | */ |
| 9689 | export interface Trim extends decodeTo<Trimmed, String> { |
no outgoing calls
no test coverage detected
searching dependent graphs…