Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
Signed-off-by: Nikola R. Hristov <nikola@nikolahristov.tech>
  • Loading branch information
NikolaRHristov committed Apr 5, 2024
1 parent 98c2821 commit f008e39
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Source/Library/Flight.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { optionCommandsPlan } from "../Option/Index.js";
import type { optionCommandsPlan } from "@Option/Index.js";

export default class flights {
plan: optionCommandsPlan = {
Expand Down
10 changes: 5 additions & 5 deletions Source/Option/Index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export type optionDebug = 0 | 1 | 2;

export type optionInfo = string;

export default interface Command {
export interface Command {
Fulfilled?:
| boolean
| ((plan: optionCommandsPlan) => Promise<false | string>);
Expand All @@ -24,7 +24,7 @@ export type optionExclude = string | RegExp | ((file: string) => boolean);

export type optionPath = string | URL | Map<string | URL, string | URL> | false;

Check failure on line 25 in Source/Option/Index.ts

View workflow job for this annotation

GitHub Actions / Pre-Publish (18)

Exported type alias 'optionPath' has or is using private name 'URL'.

Check failure on line 25 in Source/Option/Index.ts

View workflow job for this annotation

GitHub Actions / Pre-Publish (18)

Exported type alias 'optionPath' has or is using private name 'URL'.

Check failure on line 25 in Source/Option/Index.ts

View workflow job for this annotation

GitHub Actions / Pre-Publish (18)

Exported type alias 'optionPath' has or is using private name 'URL'.

Check failure on line 25 in Source/Option/Index.ts

View workflow job for this annotation

GitHub Actions / Pre-Publish (19)

Exported type alias 'optionPath' has or is using private name 'URL'.

Check failure on line 25 in Source/Option/Index.ts

View workflow job for this annotation

GitHub Actions / Pre-Publish (19)

Exported type alias 'optionPath' has or is using private name 'URL'.

Check failure on line 25 in Source/Option/Index.ts

View workflow job for this annotation

GitHub Actions / Pre-Publish (19)

Exported type alias 'optionPath' has or is using private name 'URL'.

Check failure on line 25 in Source/Option/Index.ts

View workflow job for this annotation

GitHub Actions / Pre-Publish (20)

Exported type alias 'optionPath' has or is using private name 'URL'.

Check failure on line 25 in Source/Option/Index.ts

View workflow job for this annotation

GitHub Actions / Pre-Publish (20)

Exported type alias 'optionPath' has or is using private name 'URL'.

Check failure on line 25 in Source/Option/Index.ts

View workflow job for this annotation

GitHub Actions / Pre-Publish (20)

Exported type alias 'optionPath' has or is using private name 'URL'.

export default interface Interface {
export interface Interface {
path?: optionPath | optionPath[] | Set<optionPath>;

exclude?: optionExclude | optionExclude[] | Set<optionExclude>;
Expand All @@ -34,7 +34,7 @@ export default interface Interface {
logger?: optionDebug;
}

export default interface optionCommandsPlan {
export interface optionCommandsPlan {
debug: optionDebug;

flights: number;
Expand All @@ -46,7 +46,7 @@ export default interface optionCommandsPlan {
ongoing: optionCommandsFlight;
}

export default interface optionCommandsFlight {
export interface optionCommandsFlight {
destination: optionInfo;
}

Expand All @@ -56,4 +56,4 @@ export default {
passed: async () => true,
changed: async (plan) => plan,
},
} satisfies Type;
} satisfies Interface;

0 comments on commit f008e39

Please sign in to comment.