Skip to content

Commit 79753d3

Browse files
committed
Generate files
1 parent b9583a0 commit 79753d3

31 files changed

Lines changed: 2 additions & 34 deletions

api/node-core-library.filedifftest.clearcache.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ public static clearCache(): void;
1212
```
1313
**Returns:** `void`
1414

15-
1615
## Remarks
1716

1817
Call this method if changes have been made to the package.json files on disk.

api/node-core-library.jsonfile.loadandvalidatewithcallback.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ public static loadAndValidateWithCallback(jsonFilename: string, jsonSchema: Json
1313
```
1414
**Returns:** `any`
1515

16-
1716
## Remarks
1817

1918
See JsonSchema.validateObjectWithCallback() for more info.

api/node-core-library.jsonschema.ensurecompiled.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ public ensureCompiled(): void;
1212
```
1313
**Returns:** `void`
1414

15-
1615
## Remarks
1716

1817
Any dependencies will be compiled as well.

api/node-core-library.jsonschema.fromfile.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ public static fromFile(filename: string, options?: IJsonSchemaFromFileOptions):
1212
```
1313
**Returns:** `JsonSchema`
1414

15-
1615
## Remarks
1716

1817
NOTE: An error occurs if the file does not exist; however, the file itself is not loaded or validated until it the schema is actually used.

api/node-core-library.jsonschema.fromloadedobject.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ public static fromLoadedObject(schemaObject: Object): JsonSchema;
1212
```
1313
**Returns:** `JsonSchema`
1414

15-
1615
## Remarks
1716

1817
NOTE: An error occurs if the file does not exist; however, the file itself is not loaded or validated until it the schema is actually used.

api/node-core-library.jsonschema.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ Constructs a new instance of the `JsonSchema` class
1616
| --- | --- | --- | --- |
1717
| [`shortName`](./node-core-library.jsonschema.shortname.md) | | `string` | Returns a short name for this schema, for use in error messages. |
1818

19-
2019
## Methods
2120

2221
| Method | Access Modifier | Returns | Description |
@@ -27,7 +26,6 @@ Constructs a new instance of the `JsonSchema` class
2726
| [`validateObject(jsonObject, filenameForErrors, options)`](./node-core-library.jsonschema.validateobject.md) | `public` | `void` | Validates the specified JSON object against this JSON schema. If the validation fails, an exception will be thrown. |
2827
| [`validateObjectWithCallback()`](./node-core-library.jsonschema.validateobjectwithcallback.md) | `public` | `void` | Validates the specified JSON object against this JSON schema. If the validation fails, a callback is called for each validation error. |
2928

30-
3129
## Remarks
3230

3331
The schema itself is normally loaded and compiled later, only if it is actually required to validate an input. To avoid schema errors at runtime, it's recommended to create a unit test that calls JsonSchema.ensureCompiled() for each of your schema objects.

api/node-core-library.jsonschema.validateobject.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ public validateObject(jsonObject: Object, filenameForErrors: string, options?: I
1212
```
1313
**Returns:** `void`
1414

15-
1615
## Parameters
1716

1817
| Parameter | Type | Description |

api/node-core-library.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ Core libraries that every NodeJS toolchain project should use.
1515
| [`JsonSchema`](./node-core-library.jsonschema.md) | Represents a JSON schema that can be used to validate JSON data files loaded by the JsonFile class. |
1616
| [`PackageJsonLookup`](./node-core-library.packagejsonlookup.md) | This class provides methods for finding the nearest "package.json" for a folder and retrieving the name of the package. The results are cached. |
1717

18-
1918
## Interfaces
2019

2120
| Interface | Description |

api/node-core-library.packagejsonlookup.clearcache.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ public clearCache(): void;
1212
```
1313
**Returns:** `void`
1414

15-
1615
## Remarks
1716

1817
Call this method if changes have been made to the package.json files on disk.

api/sp-webpart-base.baseclientsidewebpart.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ Constructs a new instance of the `BaseClientSideWebPart` class
3030
| [`renderedOnce`](./sp-webpart-base.baseclientsidewebpart.renderedonce.md) | | `boolean` | This property indicates whether the web part has been rendered once or not. After the first time rendering, the value of this property is always true. Till a full re-render of the web part happens. |
3131
| [`title`](./sp-webpart-base.baseclientsidewebpart.title.md) | | `string` | Title of the WebPart |
3232

33-
3433
## Methods
3534

3635
| Method | Access Modifier | Returns | Description |

0 commit comments

Comments
 (0)