Skip to content

Commit

Permalink
Change BuildOptions type declaration to interface
Browse files Browse the repository at this point in the history
  • Loading branch information
1aron committed Nov 26, 2024
1 parent 9a44e1b commit 110b1ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/techor/src/commands/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import preserveDirectives from 'rollup-plugin-preserve-directives'

declare type OutputResult = (BuildOutputOptions & { artifact: (RollupOutputAsset | RollupOutputChunk) })
declare type BuildOutputOptions = BuildCommonOptions & { output: RollupOutputOptions }
declare type BuildOptions = {
declare interface BuildOptions {
input: RollupInputOptions,
outputOptionsList: BuildOutputOptions[]
}
Expand Down

0 comments on commit 110b1ba

Please sign in to comment.