Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Jan 6, 2025
1 parent 999152b commit 2607e3c
Show file tree
Hide file tree
Showing 18 changed files with 131 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Target/Function/Configuration.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import type Interface from "../Interface/Configuration.js";
/**
* @module Configuration
*
*/
declare const _default: Interface;
export default _default;
export declare const readFile: typeof import("fs/promises").readFile;
export declare const resolve: (...paths: string[]) => string;
1 change: 1 addition & 0 deletions Target/Function/Configuration.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 38 additions & 0 deletions Target/Function/Integration.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import type Interface from "../Interface/Integration.js";
/**
* @module Integration
*
*/
declare const _default: Interface;
export default _default;
export declare const Default: {
File: string;
Cache: {
Search: string;
Folder: string;
};
Path: string;
Logger: 2;
Action: {
Failed: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
Accomplished: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
Fulfilled: ({ File }: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise<string | false>;
Read: ({ Input }: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
Wrote: ({ Buffer }: import("@playform/pipe/Target/Interface/File.js").default) => Promise<import("@playform/pipe/Target/Type/Buffer.js").Type>;
Passed: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise<true>;
Changed: (Plan: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise<import("@playform/pipe/Target/Interface/Plan.js").default>;
};
Exclude: false;
Biome: unknown;
};
export declare const Merge: <Ts extends readonly unknown[]>(...objects: Ts) => import("deepmerge-ts").DeepMergeHKT<Ts, Readonly<{
DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
DeepMergeArraysURI: "DeepMergeArraysDefaultURI";
DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
DeepMergeOthersURI: "DeepMergeLeafURI";
DeepMergeFilterValuesURI: "DeepMergeFilterValuesDefaultURI";
}>, Readonly<{
key: PropertyKey;
parents: ReadonlyArray<Readonly<Record<PropertyKey, unknown>>>;
}>>;
1 change: 1 addition & 0 deletions Target/Function/Integration.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions Target/Function/Merge.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/**
* @module Merge
*
*/
declare const _default: <Ts extends readonly unknown[]>(...objects: Ts) => import("deepmerge-ts").DeepMergeHKT<Ts, Readonly<{
DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
DeepMergeArraysURI: "DeepMergeArraysDefaultURI";
DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
DeepMergeOthersURI: "DeepMergeLeafURI";
DeepMergeFilterValuesURI: "DeepMergeFilterValuesDefaultURI";
}>, Readonly<{
key: PropertyKey;
parents: ReadonlyArray<Readonly<Record<PropertyKey, unknown>>>;
}>>;
export default _default;
1 change: 1 addition & 0 deletions Target/Function/Merge.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
var e=(await import("deepmerge-ts")).deepmergeCustom({mergeArrays:!1});export{e as default};
7 changes: 7 additions & 0 deletions Target/Interface/Configuration.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/**
* @module Configuration
*
*/
export default interface Interface {
(File: string): Promise<string>;
}
Empty file.
9 changes: 9 additions & 0 deletions Target/Interface/Integration.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import type { AstroIntegration } from "astro";
import type Option from "../Interface/Option.js";
/**
* @module Integration
*
*/
export default interface Interface {
(Option?: Option): AstroIntegration;
}
Empty file added Target/Interface/Integration.js
Empty file.
9 changes: 9 additions & 0 deletions Target/Interface/Option.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import type Option from "@playform/pipe/Target/Interface/Option.js";
import type Biome from "../Type/Biome.js";
/**
* @module Option
*
*/
export default interface Interface extends Option {
Biome?: boolean | Biome;
}
Empty file added Target/Interface/Option.js
Empty file.
7 changes: 7 additions & 0 deletions Target/Type/Biome.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import type { Configuration } from "@biomejs/js-api";
/**
* @module Biome
*
*/
export type Type = Omit<Configuration, "$schema">;
export type { Type as default };
Empty file added Target/Type/Biome.js
Empty file.
6 changes: 6 additions & 0 deletions Target/Variable/Biome.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/**
* @module Biome
*
*/
declare const _default: any;
export default _default;
1 change: 1 addition & 0 deletions Target/Variable/Biome.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
var e=JSON.parse(await(await import("../Function/Configuration.js")).default("biome.json"));export{e as default};
25 changes: 25 additions & 0 deletions Target/Variable/Option.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/**
* @module Option
*
*/
declare const _default: {
File: string;
Cache: {
Search: string;
Folder: string;
};
Path: string;
Logger: 2;
Action: {
Failed: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
Accomplished: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
Fulfilled: ({ File }: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise<string | false>;
Read: ({ Input }: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
Wrote: ({ Buffer }: import("@playform/pipe/Target/Interface/File.js").default) => Promise<import("@playform/pipe/Target/Type/Buffer.js").Type>;
Passed: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise<true>;
Changed: (Plan: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise<import("@playform/pipe/Target/Interface/Plan.js").default>;
};
Exclude: false;
Biome: unknown;
};
export default _default;
1 change: 1 addition & 0 deletions Target/Variable/Option.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2607e3c

Please sign in to comment.