From 8a2c4d2aceadb8f2545c3464ef447efad428f6ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vlado=20Te=C5=A1anovi=C4=87?= Date: Thu, 11 Aug 2016 15:58:47 +0200 Subject: [PATCH] removed private function --- jsonschema/jsonschema.d.ts | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/jsonschema/jsonschema.d.ts b/jsonschema/jsonschema.d.ts index 9e32dbfded..1c2f0f915e 100644 --- a/jsonschema/jsonschema.d.ts +++ b/jsonschema/jsonschema.d.ts @@ -98,17 +98,6 @@ declare module "jsonschema" { * @param urn */ getSchema(urn: string): {}; - - /** - * Validates an instance against the schema (the actual work horse) - * @param instance - * @param schema - * @param options - * @param ctx - * @private - * @return {IJSONSchemaResult} - */ - validateSchema(instance: any, schema: {}, options?: {}, ctx?: {}): IJSONSchemaResult } }