-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e685495
commit 20ac4f0
Showing
21 changed files
with
107 additions
and
173 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
import type Type from "../Type/Package.js"; | ||
|
||
/** | ||
* @module Package | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,7 @@ | ||
import type { OctokitResponse } from "@octokit/types"; | ||
|
||
/** | ||
* @module Request | ||
* | ||
*/ | ||
declare const _default: ( | ||
Where: string, | ||
With?: {}, | ||
Type?: string, | ||
) => Promise<OctokitResponse<any, number> | any>; | ||
declare const _default: (Where: string, With?: {}, Type?: string) => Promise<OctokitResponse<any, number> | any>; | ||
export default _default; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
import type Interface from "../Interface/Type.js"; | ||
|
||
/** | ||
* @module Type | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
import type Interface from "../Interface/WalkUntilGit.js"; | ||
|
||
/** | ||
* @module WalkUntilGit | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
import type Package from "../Type/Package.js"; | ||
|
||
/** | ||
* @module Type | ||
* | ||
*/ | ||
export default interface Interface { | ||
(Filter?: Package): Promise<Map<string, Package>>; | ||
(Filter?: Package): Promise<Map<string, Package>>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,20 @@ | ||
import type Zod from "zod"; | ||
|
||
/** | ||
* @module Environment | ||
* | ||
*/ | ||
export type Type = Zod.infer<typeof Variable>; | ||
export type { Type as default }; | ||
declare const Variable: Zod.ZodObject< | ||
{ | ||
User: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodString>>; | ||
Base: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodString>>; | ||
Token: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodString>>; | ||
}, | ||
"strip", | ||
Zod.ZodTypeAny, | ||
{ | ||
User: string; | ||
Base: string; | ||
Token: string; | ||
}, | ||
{ | ||
User?: string | undefined; | ||
Base?: string | undefined; | ||
Token?: string | undefined; | ||
} | ||
>; | ||
declare const Variable: Zod.ZodObject<{ | ||
User: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodString>>; | ||
Base: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodString>>; | ||
Token: Zod.ZodDefault<Zod.ZodOptional<Zod.ZodString>>; | ||
}, "strip", Zod.ZodTypeAny, { | ||
User: string; | ||
Base: string; | ||
Token: string; | ||
}, { | ||
User?: string | undefined; | ||
Base?: string | undefined; | ||
Token?: string | undefined; | ||
}>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,18 @@ | ||
import type { CommandOptions } from "commander"; | ||
|
||
/** | ||
* @module Command | ||
* | ||
*/ | ||
export declare const Variable: Set<{ | ||
Name: string; | ||
Opts?: CommandOptions; | ||
Type?: "Workflow"; | ||
Description?: string; | ||
Arguments?: Set<{ | ||
Name: string; | ||
Description?: string; | ||
Value?: any; | ||
}>; | ||
Action: (...args: any[]) => Promise<void>; | ||
Name: string; | ||
Opts?: CommandOptions; | ||
Type?: "Workflow"; | ||
Description?: string; | ||
Arguments?: Set<{ | ||
Name: string; | ||
Description?: string; | ||
Value?: any; | ||
}>; | ||
Action: (...args: any[]) => Promise<void>; | ||
}>; | ||
export default Variable; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,27 @@ | ||
export declare const string: ( | ||
params?: | ||
| ({ | ||
errorMap?: import("zod").ZodErrorMap | undefined; | ||
invalid_type_error?: string | undefined; | ||
required_error?: string | undefined; | ||
message?: string | undefined; | ||
description?: string | undefined; | ||
} & { | ||
coerce?: true | undefined; | ||
}) | ||
| undefined, | ||
) => import("zod").ZodString; | ||
export declare const string: (params?: ({ | ||
errorMap?: import("zod").ZodErrorMap | undefined; | ||
invalid_type_error?: string | undefined; | ||
required_error?: string | undefined; | ||
message?: string | undefined; | ||
description?: string | undefined; | ||
} & { | ||
coerce?: true | undefined; | ||
}) | undefined) => import("zod").ZodString; | ||
/** | ||
* @module Environment | ||
* | ||
*/ | ||
declare const _default: import("zod").ZodObject< | ||
{ | ||
User: import("zod").ZodDefault< | ||
import("zod").ZodOptional<import("zod").ZodString> | ||
>; | ||
Base: import("zod").ZodDefault< | ||
import("zod").ZodOptional<import("zod").ZodString> | ||
>; | ||
Token: import("zod").ZodDefault< | ||
import("zod").ZodOptional<import("zod").ZodString> | ||
>; | ||
}, | ||
"strip", | ||
import("zod").ZodTypeAny, | ||
{ | ||
User: string; | ||
Base: string; | ||
Token: string; | ||
}, | ||
{ | ||
User?: string | undefined; | ||
Base?: string | undefined; | ||
Token?: string | undefined; | ||
} | ||
>; | ||
declare const _default: import("zod").ZodObject<{ | ||
User: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>; | ||
Base: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>; | ||
Token: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>; | ||
}, "strip", import("zod").ZodTypeAny, { | ||
User: string; | ||
Base: string; | ||
Token: string; | ||
}, { | ||
User?: string | undefined; | ||
Base?: string | undefined; | ||
Token?: string | undefined; | ||
}>; | ||
export default _default; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.