Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Sep 24, 2023
1 parent e661f40 commit b2cf41d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Target/Export.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import type Option from "./Interface/Option.js";
import type { AstroIntegration } from "astro";
export declare const Default: {
url: string;
URL: string;
Logger: number;
};
declare const _default: (Options?: Option) => AstroIntegration;
declare const _default: (_Option?: Option) => AstroIntegration;
export default _default;
2 changes: 1 addition & 1 deletion Target/Export.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Target/Interface/Option.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default interface Type {
[key: string]: any;
url?: string;
logger?: number;
URL?: string;
Logger?: number;
}
2 changes: 1 addition & 1 deletion Target/Object/Option.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
declare const _default: {
url: string;
URL: string;
Logger: number;
};
export default _default;
2 changes: 1 addition & 1 deletion Target/Object/Option.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
var e={url:"/",Logger:2};export{e as default};
var e={URL:"/",Logger:2};export{e as default};

0 comments on commit b2cf41d

Please sign in to comment.