Skip to content

Commit

Permalink
DO-1554: fix some inconsistencies on variable naming
Browse files Browse the repository at this point in the history
  • Loading branch information
krishanthisera committed Oct 19, 2023
1 parent fd0e7d5 commit ccafe9f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/prerender-fargate/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { PrerenderFargate } from "./lib/prerender-fargate";
import { PrerenderFargateOptions } from "./lib/prerender-fargate-options";
import { PrerenderTokenUrlAssociationProps as PrerenderTokenUrlAssociationOptions } from "./lib/recaching/prerender-tokens";
import { PrerenderTokenUrlAssociationOptions } from "./lib/recaching/prerender-tokens";

export {
PrerenderFargate,
Expand Down
4 changes: 2 additions & 2 deletions packages/prerender-fargate/lib/prerender-fargate-options.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { PrerenderTokenUrlAssociationProps } from "./recaching/prerender-tokens";
import { PrerenderTokenUrlAssociationOptions } from "./recaching/prerender-tokens";

/**
* Options for configuring the Prerender Fargate construct.
Expand Down Expand Up @@ -77,5 +77,5 @@ export interface PrerenderFargateOptions {
* }
* ```
*/
tokenUrlAssociation?: PrerenderTokenUrlAssociationProps;
tokenUrlAssociation?: PrerenderTokenUrlAssociationOptions;
}
4 changes: 2 additions & 2 deletions packages/prerender-fargate/lib/recaching/prerender-tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ interface TokenUrlAssociation {
/**
* Interface for associating a token with a URL for prerendering.
*/
export interface PrerenderTokenUrlAssociationProps extends StackProps {
export interface PrerenderTokenUrlAssociationOptions extends StackProps {
/**
* Object containing the token and its associated URL.
* ### Example
Expand Down Expand Up @@ -46,7 +46,7 @@ export class PrerenderTokenUrlAssociation extends Stack {
constructor(
scope: Construct,
id: string,
props: PrerenderTokenUrlAssociationProps
props: PrerenderTokenUrlAssociationOptions
) {
super(scope, id, props);

Expand Down

0 comments on commit ccafe9f

Please sign in to comment.