Skip to content

Commit

Permalink
Format files
Browse files Browse the repository at this point in the history
  • Loading branch information
amckinney committed May 13, 2024
1 parent c3e8f6f commit 551f9a6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion generators/typescript/sdk/generator/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "../../../../shared/tsconfig.shared.json",
"compilerOptions": { "composite": true, "outDir": "lib", "rootDir": "src" },
"include": ["./src/**/*", "../client-class-generator/src/oauth-generator"],
"include": ["./src/**/*"],
"references": [
{ "path": "../../../../packages/commons/core-utils" },
{ "path": "../../../../packages/commons/fs-utils" },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,10 @@ export class AuthImpl extends CoreUtility implements Auth {
};

public readonly OAuthTokenProvider = {
_getExpression: this.withExportedName("OAuthTokenProvider", (OAuthTokenProvider) => () => OAuthTokenProvider.getExpression()),
_getExpression: this.withExportedName(
"OAuthTokenProvider",
(OAuthTokenProvider) => () => OAuthTokenProvider.getExpression()
),
_getReferenceToType: this.withExportedName(
"OAuthTokenProvider",
(OAuthTokenProvider) => () => OAuthTokenProvider.getTypeNode()
Expand Down

0 comments on commit 551f9a6

Please sign in to comment.