@xyd-js/sources 0.0.1-xyd.0

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.
package/docs/README.md ADDED
@@ -0,0 +1,20 @@
1
+ **@xyd-sources-examples/package-a**
2
+
3
+ ***
4
+
5
+ # @xyd-sources-examples/package-a
6
+
7
+ ## Classes
8
+
9
+ | Class | Description |
10
+ | ------ | ------ |
11
+ | [ExampleClass](classes/ExampleClass.md) | Returns a personalized hello world message. |
12
+
13
+ ## Functions
14
+
15
+ | Function | Description |
16
+ | ------ | ------ |
17
+ | [gqlSchemaToReferences](functions/gqlSchemaToReferences.md) | Converts a GraphQL schema file to references. |
18
+ | [helloWorld](functions/helloWorld.md) | Returns a hello world message. |
19
+ | [helloWorldV2](functions/helloWorldV2.md) | Returns a personalized hello world message. |
20
+ | [helloWorldV3](functions/helloWorldV3.md) | Returns a personalized hello world message. |
@@ -0,0 +1,35 @@
1
+ [**@xyd-sources-examples/package-a**](../README.md)
2
+
3
+ ***
4
+
5
+ [@xyd-sources-examples/package-a](../README.md) / ExampleClass
6
+
7
+ # Class: ExampleClass
8
+
9
+ Returns a personalized hello world message.
10
+
11
+ ## Constructors
12
+
13
+ ### Constructor
14
+
15
+ ```ts
16
+ new ExampleClass(): ExampleClass
17
+ ```
18
+
19
+ #### Returns
20
+
21
+ `ExampleClass`
22
+
23
+ ## Methods
24
+
25
+ ### helloWorld()
26
+
27
+ ```ts
28
+ helloWorld(): string
29
+ ```
30
+
31
+ Returns a hello world message.
32
+
33
+ #### Returns
34
+
35
+ `string`
@@ -0,0 +1,27 @@
1
+ [**@xyd-sources-examples/package-a**](../README.md)
2
+
3
+ ***
4
+
5
+ [@xyd-sources-examples/package-a](../README.md) / gqlSchemaToReferences
6
+
7
+ # Function: gqlSchemaToReferences()
8
+
9
+ ```ts
10
+ function gqlSchemaToReferences(schemaLocation): Promise<[]>
11
+ ```
12
+
13
+ Converts a GraphQL schema file to references.
14
+
15
+ ## Parameters
16
+
17
+ ### schemaLocation
18
+
19
+ `string`
20
+
21
+ The location of the schema file.
22
+
23
+ ## Returns
24
+
25
+ `Promise`\<\[\]\>
26
+
27
+ references
@@ -0,0 +1,17 @@
1
+ [**@xyd-sources-examples/package-a**](../README.md)
2
+
3
+ ***
4
+
5
+ [@xyd-sources-examples/package-a](../README.md) / helloWorld
6
+
7
+ # Function: helloWorld()
8
+
9
+ ```ts
10
+ function helloWorld(): string
11
+ ```
12
+
13
+ Returns a hello world message.
14
+
15
+ ## Returns
16
+
17
+ `string`
@@ -0,0 +1,33 @@
1
+ [**@xyd-sources-examples/package-a**](../README.md)
2
+
3
+ ***
4
+
5
+ [@xyd-sources-examples/package-a](../README.md) / helloWorldV2
6
+
7
+ # Function: helloWorldV2()
8
+
9
+ ```ts
10
+ function helloWorldV2(name, enthusiastic): string
11
+ ```
12
+
13
+ Returns a personalized hello world message.
14
+
15
+ ## Parameters
16
+
17
+ ### name
18
+
19
+ `string`
20
+
21
+ Name of the person to greet.
22
+
23
+ ### enthusiastic
24
+
25
+ `boolean` = `false`
26
+
27
+ If true, adds an exclamation point to the greeting.
28
+
29
+ ## Returns
30
+
31
+ `string`
32
+
33
+ A greeting message string.
@@ -0,0 +1,35 @@
1
+ [**@xyd-sources-examples/package-a**](../README.md)
2
+
3
+ ***
4
+
5
+ [@xyd-sources-examples/package-a](../README.md) / helloWorldV3
6
+
7
+ # Function: helloWorldV3()
8
+
9
+ ```ts
10
+ function helloWorldV3<T>(name): string
11
+ ```
12
+
13
+ Returns a personalized hello world message.
14
+
15
+ ## Type Parameters
16
+
17
+ ### T
18
+
19
+ `T`
20
+
21
+ The type of the name.
22
+
23
+ ## Parameters
24
+
25
+ ### name
26
+
27
+ `T`
28
+
29
+ Name of the person to greet.
30
+
31
+ ## Returns
32
+
33
+ `string`
34
+
35
+ A greeting message string.