import { ValidationSchemas } from '~/domain'; export interface IIsThemisSchema { isSchema(value: unknown): value is ValidationSchemas; } export namespace IIsThemisSchema { export type CheckValueKey = { [K in keyof ValidationSchemas]: (propValue: ValidationSchemas[K]) => boolean }; }