Skip to content

Commit 2607e3c

Browse files
Nikola HristovNikola Hristov
authored andcommitted
1 parent 999152b commit 2607e3c

18 files changed

Lines changed: 131 additions & 0 deletions

Target/Function/Configuration.d.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import type Interface from "../Interface/Configuration.js";
2+
/**
3+
* @module Configuration
4+
*
5+
*/
6+
declare const _default: Interface;
7+
export default _default;
8+
export declare const readFile: typeof import("fs/promises").readFile;
9+
export declare const resolve: (...paths: string[]) => string;

Target/Function/Configuration.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Target/Function/Integration.d.ts

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
import type Interface from "../Interface/Integration.js";
2+
/**
3+
* @module Integration
4+
*
5+
*/
6+
declare const _default: Interface;
7+
export default _default;
8+
export declare const Default: {
9+
File: string;
10+
Cache: {
11+
Search: string;
12+
Folder: string;
13+
};
14+
Path: string;
15+
Logger: 2;
16+
Action: {
17+
Failed: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
18+
Accomplished: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
19+
Fulfilled: ({ File }: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise<string | false>;
20+
Read: ({ Input }: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
21+
Wrote: ({ Buffer }: import("@playform/pipe/Target/Interface/File.js").default) => Promise<import("@playform/pipe/Target/Type/Buffer.js").Type>;
22+
Passed: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise<true>;
23+
Changed: (Plan: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise<import("@playform/pipe/Target/Interface/Plan.js").default>;
24+
};
25+
Exclude: false;
26+
Biome: unknown;
27+
};
28+
export declare const Merge: <Ts extends readonly unknown[]>(...objects: Ts) => import("deepmerge-ts").DeepMergeHKT<Ts, Readonly<{
29+
DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
30+
DeepMergeArraysURI: "DeepMergeArraysDefaultURI";
31+
DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
32+
DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
33+
DeepMergeOthersURI: "DeepMergeLeafURI";
34+
DeepMergeFilterValuesURI: "DeepMergeFilterValuesDefaultURI";
35+
}>, Readonly<{
36+
key: PropertyKey;
37+
parents: ReadonlyArray<Readonly<Record<PropertyKey, unknown>>>;
38+
}>>;

Target/Function/Integration.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Target/Function/Merge.d.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/**
2+
* @module Merge
3+
*
4+
*/
5+
declare const _default: <Ts extends readonly unknown[]>(...objects: Ts) => import("deepmerge-ts").DeepMergeHKT<Ts, Readonly<{
6+
DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
7+
DeepMergeArraysURI: "DeepMergeArraysDefaultURI";
8+
DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
9+
DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
10+
DeepMergeOthersURI: "DeepMergeLeafURI";
11+
DeepMergeFilterValuesURI: "DeepMergeFilterValuesDefaultURI";
12+
}>, Readonly<{
13+
key: PropertyKey;
14+
parents: ReadonlyArray<Readonly<Record<PropertyKey, unknown>>>;
15+
}>>;
16+
export default _default;

Target/Function/Merge.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
var e=(await import("deepmerge-ts")).deepmergeCustom({mergeArrays:!1});export{e as default};
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* @module Configuration
3+
*
4+
*/
5+
export default interface Interface {
6+
(File: string): Promise<string>;
7+
}

Target/Interface/Configuration.js

Whitespace-only changes.

Target/Interface/Integration.d.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import type { AstroIntegration } from "astro";
2+
import type Option from "../Interface/Option.js";
3+
/**
4+
* @module Integration
5+
*
6+
*/
7+
export default interface Interface {
8+
(Option?: Option): AstroIntegration;
9+
}

Target/Interface/Integration.js

Whitespace-only changes.

0 commit comments

Comments
 (0)