Skip to content

Commit

Permalink
TerraformElement
Browse files Browse the repository at this point in the history
  • Loading branch information
Chang Zhe Jiet authored and Chang Zhe Jiet committed Apr 20, 2024
1 parent b21edec commit 21a730b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/blocks/Import.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Block } from '.';
* @category Block
*/
export interface ImportArgs {
to: TerraformElement | string;
to: TerraformElement;
id: string;
provider?: Argument;
}
Expand Down
4 changes: 2 additions & 2 deletions src/blocks/Moved.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import { Block } from '.';
* @category Block
*/
export interface MovedArgs {
from: TerraformElement | string;
to: TerraformElement | string;
from: TerraformElement;
to: TerraformElement;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/blocks/Removed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Block } from '.';
* @category Block
*/
export interface RemovedArgs {
from: TerraformElement | string;
from: TerraformElement;
lifecycle: {
destroy: boolean;
};
Expand Down

0 comments on commit 21a730b

Please sign in to comment.