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