Skip to content

Commit

Permalink
Updated code formating inside types.ts to work with newer packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
RopoMen committed Jan 27, 2023
1 parent d821285 commit a5e7a81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types.ts
Expand Up @@ -6,7 +6,7 @@ export const PemLabel = {
PRIVATE_KEY: "PRIVATE KEY" as const,
};

export type PemLabelId = typeof PemLabel[keyof typeof PemLabel];
export type PemLabelId = (typeof PemLabel)[keyof typeof PemLabel];

export interface SamlSigningOptions {
privateKey: string | Buffer;
Expand Down

0 comments on commit a5e7a81

Please sign in to comment.