Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Oct 13, 2024
1 parent 2a7d62e commit dc07784
Show file tree
Hide file tree
Showing 4 changed files with 99 additions and 50 deletions.
85 changes: 56 additions & 29 deletions Target/Function/Integration.d.ts
Original file line number Diff line number Diff line change
@@ -1,37 +1,64 @@
import type Interface from "../Interface/Integraton.js";

/**
* @module Integration
*
*/
declare const _default: Interface;
export default _default;
import type Interface from "../Interface/Integraton.js";

export declare const Default: {
Cache: {
Search: string;
Folder: string;
};
Path: string;
Logger: 2;
Action: {
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>;
Failed: ({ Input }: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
Accomplished: ({ Input, Output }: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
Fulfilled: ({ File }: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise<string | false>;
Changed: (Plan: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise<import("@playform/pipe/Target/Interface/Plan.js").default>;
};
File: string;
Exclude: false;
Cache: {
Search: string;
Folder: string;
};
Path: string;
Logger: 2;
Action: {
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>;
Failed: ({
Input,
}: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
Accomplished: ({
Input,
Output,
}: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
Fulfilled: ({
File,
}: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise<
string | false
>;
Changed: (
Plan: import("@playform/pipe/Target/Interface/Plan.js").default,
) => Promise<import("@playform/pipe/Target/Interface/Plan.js").default>;
};
File: string;
Exclude: false;
};
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>>>;
}>>;
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>>>;
}>
>;
8 changes: 5 additions & 3 deletions Target/Interface/Integraton.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import type { AstroIntegration } from "astro";

import type Option from "../Type/Option.js";

/**
* @module Integration
*
*/
export default interface Interface {
(Option: Option): AstroIntegration;
(Option: Option): AstroIntegration;
}
import type Option from "../Type/Option.js";
import type { AstroIntegration } from "astro";
3 changes: 2 additions & 1 deletion Target/Type/Option.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import type Option from "@playform/pipe/Target/Interface/Option.js";

/**
* @module Option
*
*/
export type Type = Option;
export type { Type as default };
import type Option from "@playform/pipe/Target/Interface/Option.js";
53 changes: 36 additions & 17 deletions Target/Variable/Option.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,41 @@
*
*/
declare const _default: {
Cache: {
Search: string;
Folder: string;
};
Path: string;
Logger: 2;
Action: {
Read: ({ Input }: import("@playform/pipe/Target/Interface/File").default) => Promise<string>;
Wrote: ({ Buffer }: import("@playform/pipe/Target/Interface/File").default) => Promise<import("@playform/pipe/Target/Type/Buffer").Type>;
Passed: (On: import("@playform/pipe/Target/Interface/File").default) => Promise<true>;
Failed: ({ Input }: import("@playform/pipe/Target/Interface/File").default) => Promise<string>;
Accomplished: ({ Input, Output }: import("@playform/pipe/Target/Interface/File").default) => Promise<string>;
Fulfilled: ({ File }: import("@playform/pipe/Target/Interface/Plan").default) => Promise<string | false>;
Changed: (Plan: import("@playform/pipe/Target/Interface/Plan").default) => Promise<import("@playform/pipe/Target/Interface/Plan").default>;
};
File: string;
Exclude: false;
Cache: {
Search: string;
Folder: string;
};
Path: string;
Logger: 2;
Action: {
Read: ({
Input,
}: import("@playform/pipe/Target/Interface/File").default) => Promise<string>;
Wrote: ({
Buffer,
}: import("@playform/pipe/Target/Interface/File").default) => Promise<
import("@playform/pipe/Target/Type/Buffer").Type
>;
Passed: (
On: import("@playform/pipe/Target/Interface/File").default,
) => Promise<true>;
Failed: ({
Input,
}: import("@playform/pipe/Target/Interface/File").default) => Promise<string>;
Accomplished: ({
Input,
Output,
}: import("@playform/pipe/Target/Interface/File").default) => Promise<string>;
Fulfilled: ({
File,
}: import("@playform/pipe/Target/Interface/Plan").default) => Promise<
string | false
>;
Changed: (
Plan: import("@playform/pipe/Target/Interface/Plan").default,
) => Promise<import("@playform/pipe/Target/Interface/Plan").default>;
};
File: string;
Exclude: false;
};
export default _default;

0 comments on commit dc07784

Please sign in to comment.