1
0
Fork 0

fix: remove broken schema re-export

this should not be a breaking change, since the symbol being exported
does not exist (therefore, it is already broken).
This commit is contained in:
Sean Sube 2022-10-08 14:23:38 -05:00
parent 423745b50a
commit 8a12ab2244
5 changed files with 15 additions and 17 deletions

View File

@ -14,11 +14,11 @@ export interface IncludeOptions
## Properties
| Property | Type | Description |
| --- | --- | --- |
| [exists](./js-yaml-schema.includeoptions.exists.md) | (path: string) => boolean | |
| [join](./js-yaml-schema.includeoptions.join.md) | (...path: Array<string>) => string | |
| [read](./js-yaml-schema.includeoptions.read.md) | IncludeReader | |
| [resolve](./js-yaml-schema.includeoptions.resolve.md) | (path: string) => string | |
| [schema](./js-yaml-schema.includeoptions.schema.md) | Optional<Schema> | |
| Property | Modifiers | Type | Description |
| --- | --- | --- | --- |
| [exists](./js-yaml-schema.includeoptions.exists.md) | | (path: string) => boolean | |
| [join](./js-yaml-schema.includeoptions.join.md) | | (...path: Array<string>) => string | |
| [read](./js-yaml-schema.includeoptions.read.md) | | IncludeReader | |
| [resolve](./js-yaml-schema.includeoptions.resolve.md) | | (path: string) => string | |
| [schema](./js-yaml-schema.includeoptions.schema.md) | | Optional<Schema> | |

View File

@ -16,8 +16,8 @@ export interface IncludeSchemaOptions
## Properties
| Property | Type | Description |
| --- | --- | --- |
| [base?](./js-yaml-schema.includeschemaoptions.base.md) | Schema | <i>(Optional)</i> |
| [include](./js-yaml-schema.includeschemaoptions.include.md) | Readonly&lt;Omit&lt;[IncludeOptions](./js-yaml-schema.includeoptions.md)<!-- -->, 'schema'&gt;&gt; | |
| Property | Modifiers | Type | Description |
| --- | --- | --- | --- |
| [base?](./js-yaml-schema.includeschemaoptions.base.md) | | Schema | <i>(Optional)</i> |
| [include](./js-yaml-schema.includeschemaoptions.include.md) | | Readonly&lt;Omit&lt;[IncludeOptions](./js-yaml-schema.includeoptions.md)<!-- -->, 'schema'&gt;&gt; | |

View File

@ -8,7 +8,7 @@
| Function | Description |
| --- | --- |
| [createInclude(options)](./js-yaml-schema.createinclude.md) | Instantiate an include type with a copy of the provided options, returning the include type and its schema setter.<!-- -->Includes must be resolved synchronously, which greatly limits where this can be used. |
| [createInclude(options)](./js-yaml-schema.createinclude.md) | <p>Instantiate an include type with a copy of the provided options, returning the include type and its schema setter.</p><p>Includes must be resolved synchronously, which greatly limits where this can be used.</p> |
| [createIncludeSchema(options)](./js-yaml-schema.createincludeschema.md) | Extended schema with the include type, and auto-configuration of the include schema. |
| [createSchema(options)](./js-yaml-schema.createschema.md) | |

View File

@ -13,7 +13,7 @@ export interface SchemaOptions
## Properties
| Property | Type | Description |
| --- | --- | --- |
| [base?](./js-yaml-schema.schemaoptions.base.md) | Schema | <i>(Optional)</i> |
| Property | Modifiers | Type | Description |
| --- | --- | --- | --- |
| [base?](./js-yaml-schema.schemaoptions.base.md) | | Schema | <i>(Optional)</i> |

View File

@ -1,7 +1,5 @@
import { CONFIG_SCHEMA } from './schema';
import { VERSION_INFO } from './version';
export default {
CONFIG_SCHEMA,
VERSION_INFO,
};