8 lines
169 B
TypeScript
8 lines
169 B
TypeScript
import SchemaItem from '../SchemaItem'
|
|
|
|
export default class SchemaAny extends SchemaItem {
|
|
public override isOfType(input: unknown): input is any {
|
|
return true
|
|
}
|
|
}
|