generated from avior/template-web-astro
8
src/Schema/Items/SchemaBoolean.ts
Normal file
8
src/Schema/Items/SchemaBoolean.ts
Normal file
@ -0,0 +1,8 @@
|
||||
import SchemaItem from '../SchemaItem'
|
||||
|
||||
export default class SchemaBoolean extends SchemaItem<boolean> {
|
||||
|
||||
public override isOfType(input: unknown): input is boolean {
|
||||
return typeof input === 'boolean'
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user