-
-
Notifications
You must be signed in to change notification settings - Fork 12
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
09bdb09
commit d7f6dd3
Showing
29 changed files
with
73 additions
and
71 deletions.
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
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
This file was deleted.
Oops, something went wrong.
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,23 @@ | ||
import type Pipe from "@playform/pipe/Target/Interface/Class.js"; | ||
|
||
import type Option from "./Option.js"; | ||
|
||
/** | ||
* @module Pipe | ||
* | ||
*/ | ||
export default interface Interface { | ||
( | ||
Cache: Option["Cache"], | ||
|
||
Logger: Option["Logger"], | ||
|
||
Path: Parameters<Pipe["In"]>[0], | ||
|
||
FileBy: Parameters<Pipe["By"]>[0], | ||
|
||
FileNot: Parameters<Pipe["Not"]>[0], | ||
|
||
Action: Exclude<Option["Action"], boolean>, | ||
): Promise<Pipe>; | ||
} |
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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import type Interface from "../Interface/Directory.js"; | ||
/** | ||
* @module Directory | ||
* | ||
*/ | ||
declare const _default: Interface; | ||
export default _default; | ||
import type Interface from "../Interface/Directory.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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import type Interface from "../../Interface/Image/Writesharp.js"; | ||
/** | ||
* @module Image | ||
* | ||
*/ | ||
declare const _default: Interface; | ||
export default _default; | ||
import type Interface from "../../Interface/Image/Writesharp.js"; | ||
export declare const _Map: import("../../Interface/Map.js").default; |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import type { ParsedPath } from "path"; | ||
/** | ||
* @module Directory | ||
* | ||
*/ | ||
export default interface Interface { | ||
(Path: string): Promise<ParsedPath["dir"]>; | ||
} | ||
import type { ParsedPath } from "path"; |
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
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import type On from "../../Interface/Image/Onsharp.js"; | ||
import type Option from "../../Interface/Image/sharp.js"; | ||
/** | ||
* @module Image | ||
* | ||
*/ | ||
export default interface Interface { | ||
(Option: Option, On: On): Promise<any>; | ||
} | ||
import type On from "../../Interface/Image/Onsharp.js"; | ||
import type Option from "../../Interface/Image/sharp.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
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import type { AstroIntegration } from "astro"; | ||
import type Option from "../Interface/Option.js"; | ||
/** | ||
* @module Integration | ||
* | ||
*/ | ||
export default interface Interface { | ||
(Option?: Option): AstroIntegration; | ||
} | ||
import type { AstroIntegration } from "astro"; | ||
import type Option from "../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
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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import type { Options } from "html-minifier-terser"; | ||
/** | ||
* @module HTML | ||
* | ||
*/ | ||
export type Type = Options; | ||
export type { Type as default }; | ||
import type { Options } from "html-minifier-terser"; |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import type { MinifyOptions } from "terser"; | ||
/** | ||
* @module JavaScript | ||
* | ||
*/ | ||
export type Type = MinifyOptions; | ||
export type { Type as default }; | ||
import type { MinifyOptions } from "terser"; |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import type { Config } from "svgo"; | ||
/** | ||
* @module SVG | ||
* | ||
*/ | ||
export type Type = Config; | ||
export type { Type as default }; | ||
import type { Config } from "svgo"; |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import type Interface from "../../Interface/CSS/csso.js"; | ||
/** | ||
* @module CSS | ||
* | ||
*/ | ||
declare const _default: Interface; | ||
export default _default; | ||
import type Interface from "../../Interface/CSS/csso.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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import type Interface from "../../Interface/CSS/lightningcss.js"; | ||
/** | ||
* @module CSS | ||
* | ||
*/ | ||
declare const _default: Interface; | ||
export default _default; | ||
import type Interface from "../../Interface/CSS/lightningcss.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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import type Interface from "../../Interface/Map.js"; | ||
/** | ||
* @module Image | ||
* | ||
*/ | ||
declare const _default: Interface; | ||
export default _default; | ||
import type Interface from "../../Interface/Map.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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import type Interface from "../../Interface/Image/sharp.js"; | ||
/** | ||
* @module Image | ||
* | ||
*/ | ||
declare const _default: Interface; | ||
export default _default; | ||
import type Interface from "../../Interface/Image/sharp.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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import type Interface from "../Interface/Map.js"; | ||
/** | ||
* @module Map | ||
* | ||
*/ | ||
declare const _default: Interface; | ||
export default _default; | ||
import type Interface from "../Interface/Map.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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import type Interface from "../Interface/Parser.js"; | ||
/** | ||
* @module Parser | ||
* | ||
*/ | ||
declare const _default: Interface; | ||
export default _default; | ||
import type Interface from "../Interface/Parser.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