@schemastore/warp-workflows 1.0.1 → 1.0.2
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/README.md +1 -1
- package/index.d.ts +2 -12
- package/package.json +1 -1
package/README.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -40,16 +40,6 @@ export type AuthorUrl = string | null;
|
|
|
40
40
|
* https://github.com/warpdotdev/warp-workflows/blob/main/FORMAT.md#shells
|
|
41
41
|
*/
|
|
42
42
|
export type Shells = ('Zsh' | 'zsh' | 'Bash' | 'bash' | 'Fish' | 'fish')[];
|
|
43
|
-
/**
|
|
44
|
-
* A name of the current argument
|
|
45
|
-
* https://github.com/warpdotdev/warp-workflows/blob/main/FORMAT.md#argumentsname
|
|
46
|
-
*/
|
|
47
|
-
export type Name1 = string;
|
|
48
|
-
/**
|
|
49
|
-
* A description of the current argument
|
|
50
|
-
* https://github.com/warpdotdev/warp-workflows/blob/main/FORMAT.md#argumentsdescription
|
|
51
|
-
*/
|
|
52
|
-
export type Description1 = string | null;
|
|
53
43
|
/**
|
|
54
44
|
* A default value of the current argument
|
|
55
45
|
* https://github.com/warpdotdev/warp-workflows/blob/main/FORMAT.md#argumentsdefault_value
|
|
@@ -60,8 +50,8 @@ export type DefaultValue = boolean | number | string | null;
|
|
|
60
50
|
* https://github.com/warpdotdev/warp-workflows/blob/main/FORMAT.md#arguments
|
|
61
51
|
*/
|
|
62
52
|
export type Arguments = {
|
|
63
|
-
name:
|
|
64
|
-
description?:
|
|
53
|
+
name: Name;
|
|
54
|
+
description?: Description;
|
|
65
55
|
default_value?: DefaultValue;
|
|
66
56
|
}[];
|
|
67
57
|
|
package/package.json
CHANGED