-
-
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
703031a
commit 0d996ac
Showing
4 changed files
with
3 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
import type Interface from "../Interface/Integration.js"; | ||
|
||
/** | ||
* @module Integration | ||
* | ||
|
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,11 +1,9 @@ | ||
import type { AstroIntegration } from "astro"; | ||
|
||
import type Option from "../Interface/Option.js"; | ||
|
||
/** | ||
* @module Integration | ||
* | ||
*/ | ||
export default interface Interface { | ||
(Option: Option): AstroIntegration; | ||
(Option: Option): AstroIntegration; | ||
} |
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 Option from "@playform/pipe/Target/Interface/Option.js"; | ||
|
||
/** | ||
* @module Option | ||
* | ||
*/ | ||
export default interface Interface extends Option {} | ||
export default interface Interface extends Option { | ||
} |
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,5 +1,4 @@ | ||
import type Option from "@playform/pipe/Target/Interface/Option.js"; | ||
|
||
/** | ||
* @module Option | ||
* | ||
|