Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Aug 26, 2023
1 parent 0d555ec commit b8339f4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Target/Index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { AstroIntegration } from "astro";
import type { Options } from "./Option/Index.js";
declare const _default: (Options?: Options) => AstroIntegration;
import type { Option } from "./Option/Index.js";
declare const _default: (Options?: Option) => AstroIntegration;
export default _default;
4 changes: 2 additions & 2 deletions Target/Option/Index.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Option as _Option } from "files-pipe";
export interface Options extends _Option {
export interface Option extends _Option {
[key: string]: any;
}
declare const _default: Options;
declare const _default: Option;
export default _default;

0 comments on commit b8339f4

Please sign in to comment.