@ghfs/cli 0.0.0 → 0.0.1

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/dist/index.d.mts DELETED
@@ -1,53 +0,0 @@
1
- //#region src/types.d.ts
2
- type IssueKind = 'issue' | 'pull';
3
- type IssueState = 'open' | 'closed';
4
- interface GhfsUserConfig {
5
- repo?: string;
6
- storageDir?: string;
7
- executeFile?: string;
8
- auth?: {
9
- preferGhCli?: boolean;
10
- tokenEnv?: string[];
11
- };
12
- detectRepo?: {
13
- fromGit?: boolean;
14
- fromPackageJson?: boolean;
15
- };
16
- sync?: {
17
- includeClosed?: boolean;
18
- writePrPatch?: boolean;
19
- deleteClosedPrPatch?: boolean;
20
- };
21
- cli?: {
22
- interactiveExecuteInTTY?: boolean;
23
- };
24
- }
25
- interface GhfsResolvedConfig {
26
- cwd: string;
27
- repo?: string;
28
- storageDir: string;
29
- storageDirAbsolute: string;
30
- executeFile: string;
31
- executeFileAbsolute: string;
32
- auth: {
33
- preferGhCli: boolean;
34
- tokenEnv: string[];
35
- };
36
- detectRepo: {
37
- fromGit: boolean;
38
- fromPackageJson: boolean;
39
- };
40
- sync: {
41
- includeClosed: boolean;
42
- writePrPatch: boolean;
43
- deleteClosedPrPatch: boolean;
44
- };
45
- cli: {
46
- interactiveExecuteInTTY: boolean;
47
- };
48
- }
49
- //#endregion
50
- //#region src/index.d.ts
51
- declare function defineConfig(config: GhfsUserConfig): GhfsUserConfig;
52
- //#endregion
53
- export { type GhfsResolvedConfig, type GhfsUserConfig, type IssueKind, type IssueState, defineConfig };
package/dist/index.mjs DELETED
@@ -1,7 +0,0 @@
1
- //#region src/index.ts
2
- function defineConfig(config) {
3
- return config;
4
- }
5
-
6
- //#endregion
7
- export { defineConfig };