Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
NikolaRHristov committed May 14, 2024
1 parent 3d5b337 commit e19488c
Showing 2 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Source/Function/Integration.ts
Original file line number Diff line number Diff line change
@@ -34,7 +34,7 @@ export default ((...[_Option = {}]: Parameters<Interface>) => {
},
},
};
}) satisfies Interface as Interface;
}) satisfies Interface;

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

16 changes: 14 additions & 2 deletions Target/Function/Integration.d.ts
Original file line number Diff line number Diff line change
@@ -2,9 +2,21 @@
* @module Integration
*
*/
declare const _default: Interface;
declare const _default: (Option: import("../Interface/Option.js").default) => {
name: string;
hooks: {
"astro:build:done": ({ dir }: {
pages: {
pathname: string;
}[];
dir: URL;
routes: import("astro").RouteData[];
logger: import("astro").AstroIntegrationLogger;
cacheManifest: boolean;
}) => void;
};
};
export default _default;
import type Interface from "../Interface/Integration.js";
export declare const Default: Omit<{} & {
default: {
Cache: {

0 comments on commit e19488c

Please sign in to comment.