@schemastore/backportrc 0.0.6 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +22 -6
  2. package/index.d.ts +3 -3
  3. package/package.json +4 -4
package/README.md CHANGED
@@ -1,12 +1,28 @@
1
- # Installation
2
- > `npm install --save @schemastore/backportrc`
1
+ # Type definitions for backportrc
2
+
3
+ ## Installation
4
+
5
+ ```
6
+ npm i @schemastore/backportrc
7
+ yarn add @schemastore/backportrc
8
+ ```
9
+
10
+ ## Summary
3
11
 
4
- # Summary
5
12
  This package contains type definitions for backportrc.
6
13
 
7
- ## Details
8
- Files were exported from https://github.com/ffflorian/schemastore-updater/tree/main/schemas/backportrc.
14
+ ## Usage
15
+
16
+ ```ts
17
+ import * as backportrc from '@schemastore/backportrc';
18
+ ```
19
+
20
+ ## Note
21
+
22
+ The definitions were auto-generated by [schemastore-updater](https://github.com/ffflorian/schemastore-updater) using [`json-schema-to-typescript`](https://www.npmjs.com/package/json-schema-to-typescript).
9
23
 
10
24
  ## Additional Details
11
- * Last updated: Mon, May 30, 2022, 07:50:59 GMT
25
+
26
+ * [Schema source](https://github.com/SchemaStore/schemastore/tree/master/src/schemas/json/backportrc)
27
+ * Last updated: Thu, Jan 04, 2024, 19:12:50 GMT
12
28
  * Dependencies: none
package/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -18,7 +18,7 @@ export interface JSONSchemaForBackportConfigFile {
18
18
  | {
19
19
  name: string;
20
20
  checked: boolean;
21
- [k: string]: unknown;
21
+ [k: string]: unknown | undefined;
22
22
  }
23
23
  )[];
24
24
  /**
@@ -29,5 +29,5 @@ export interface JSONSchemaForBackportConfigFile {
29
29
  * Whether to only show the current user's commits or commits from anyone
30
30
  */
31
31
  all?: boolean;
32
- [k: string]: unknown;
32
+ [k: string]: unknown | undefined;
33
33
  }
package/package.json CHANGED
@@ -7,8 +7,8 @@
7
7
  "name": "@schemastore/backportrc",
8
8
  "repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/backportrc",
9
9
  "scripts": {},
10
- "typesPublisherContentHash": "3ab8d0bdfa0f4be2c39082e770723244c28f7ac50210043196ca6a13036a67a5",
10
+ "typeScriptVersion": "2.2",
11
11
  "types": "index.d.ts",
12
- "version": "0.0.6",
13
- "typeScriptVersion": "2.2"
14
- }
12
+ "typesPublisherContentHash": "3ab8d0bdfa0f4be2c39082e770723244c28f7ac50210043196ca6a13036a67a5",
13
+ "version": "0.0.8"
14
+ }