-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2d92125
commit ba5948d
Showing
5 changed files
with
77 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,3 @@ CODE_OF_CONDUCT.md | |
CONTRIBUTING.md | ||
Documentation/ | ||
Source/ | ||
Summary.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/** | ||
* @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; | ||
}; | ||
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>>>; | ||
}>>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/** | ||
* @module Integration | ||
* | ||
*/ | ||
export default interface Interface { | ||
(Option: Option): AstroIntegration; | ||
} | ||
import type Option from "../Type/Option.js"; | ||
import type { AstroIntegration } from "astro"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/** | ||
* @module Option | ||
* | ||
*/ | ||
export type Type = Option; | ||
export type { Type as default }; | ||
import type Option from "@playform/pipe/Target/Interface/Option.js"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/** | ||
* @module Option | ||
* | ||
*/ | ||
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; | ||
}; | ||
export default _default; |