Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Oct 4, 2024
1 parent ee8e10b commit 5389551
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Target/Function/Configuration.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import type Interface from "../Interface/Configuration.js";
/**
* @module Configuration
*
*/
declare const _default: Interface;
export default _default;
import type Interface from "../Interface/Configuration.js";
export declare const readFile: typeof import("fs/promises").readFile;
export declare const resolve: (...paths: string[]) => string;
2 changes: 1 addition & 1 deletion Target/Function/Integration.d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import type Interface from "../Interface/Integration.js";
/**
* @module Integration
*
*/
declare const _default: Interface;
export default _default;
import type Interface from "../Interface/Integration.js";
export declare const Default: {
File: string;
Cache: {
Expand Down
4 changes: 2 additions & 2 deletions Target/Interface/Integration.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import type { AstroIntegration } from "astro";
import type Option from "../Interface/Option.js";
/**
* @module Integration
*
*/
export default interface Interface {
(Option: Option): AstroIntegration;
}
import type { AstroIntegration } from "astro";
import type Option from "../Interface/Option.js";
4 changes: 2 additions & 2 deletions Target/Interface/Option.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import type Option from "@playform/pipe/Target/Interface/Option.js";
import type Biome from "../Type/Biome.js";
/**
* @module Option
*
*/
export default interface Interface extends Option {
Biome?: boolean | Biome;
}
import type Biome from "../Type/Biome.js";
import type Option from "@playform/pipe/Target/Interface/Option.js";
2 changes: 1 addition & 1 deletion Target/Type/Biome.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Configuration } from "@biomejs/js-api";
/**
* @module Biome
*
*/
export type Type = Omit<Configuration, "$schema">;
export type { Type as default };
import type { Configuration } from "@biomejs/js-api";
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"@biomejs/wasm-nodejs": "1.9.3",
"@playform/pipe": "0.1.1",
"astro": "4.15.11",
"deepmerge-ts": "7.1.0"
"deepmerge-ts": "7.1.1"
},
"devDependencies": {
"@playform/build": "0.1.7"
Expand Down

0 comments on commit 5389551

Please sign in to comment.