Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Oct 21, 2023
1 parent 9904d49 commit b5775bf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/Function/Integration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @module Integration
*
*/
export default (_Option: Option = {}): AstroIntegration => {
export default ((_Option: Option = {}): AstroIntegration => {
for (const Option in _Option) {
if (
Object.prototype.hasOwnProperty.call(_Option, Option) &&
Expand Down Expand Up @@ -34,11 +34,11 @@ export default (_Option: Option = {}): AstroIntegration => {
},
},
};
};
}) satisfies Type as Type;

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

import type Path from "files-pipe/Target/Interface/Path.js";
import type Path from "files-pipe/Target/Type/Path.js";

import type { AstroIntegration } from "astro";

Expand Down
7 changes: 7 additions & 0 deletions Source/Interface/Integration.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/**
* @module Integration
*
*/
export default interface Type {
()
}

0 comments on commit b5775bf

Please sign in to comment.