Skip to content

Commit

Permalink
style: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
RutZap committed Jan 17, 2025
1 parent 1db993a commit ca919ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion integration/testdata/set_create_operation/tests.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ test("duration set attribute on required field - set to P1D - is P1D", async ()

test("duration set attribute from explicit input - set to P2D - is P2D", async () => {
const thing = await actions.createDurationFromExplicitInput({
explDuration: Duration.fromISOString("P2D")
explDuration: Duration.fromISOString("P2D"),
});
expect(thing.requiredDuration).toEqual("P2D");
});
Expand Down
2 changes: 1 addition & 1 deletion packages/functions-runtime/src/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ export type FileDbRecord = {
export declare class Duration {
constructor(postgresString: string);
static fromISOString(iso: DurationString): Duration;

toISOString(): DurationString;
toPostgres(): string;
}
Expand Down

0 comments on commit ca919ef

Please sign in to comment.