| 77 | } |
| 78 | |
| 79 | export interface StringDataType extends AbstractDataType { |
| 80 | options?: StringDataTypeOptions; |
| 81 | BINARY: this; |
| 82 | validate(value: unknown): boolean; |
| 83 | } |
| 84 | |
| 85 | export interface StringDataTypeOptions { |
| 86 | length?: number; |
nothing calls this directly
no outgoing calls
no test coverage detected