import { ValidationObjectSchema } from '../entities'; export interface IThemisMethods extends IThemisMethods.Schema {} export namespace IThemisMethods { export interface Schema { /** * Creates a validation schema * * @param {ValidationObjectSchema.Shape | ValidationObjectSchema} shape */ schema(shape: ValidationObjectSchema.Shape | ValidationObjectSchema): ValidationObjectSchema; } }