Skip to content
This repository has been archived by the owner on Dec 31, 2023. It is now read-only.

Commit

Permalink
Merge pull request #183 from HutechCJ/deepsource-transform-36e35e89
Browse files Browse the repository at this point in the history
format code with prettier, dotnet-format and yapf
  • Loading branch information
foxminchan committed Sep 13, 2023
2 parents b45832f + f11eb30 commit 0d9f5e0
Show file tree
Hide file tree
Showing 5 changed files with 205 additions and 213 deletions.
10 changes: 5 additions & 5 deletions apps/cms/@types/global.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
declare global {
namespace NodeJS {
interface ProcessEnv {
GOOGLE_MAP_API_KEY: string
}
namespace NodeJS {
interface ProcessEnv {
GOOGLE_MAP_API_KEY: string;
}
}
}

export {}
export {};
12 changes: 6 additions & 6 deletions apps/cms/@types/util.d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
type AxiosRequestConfig = import('axios').AxiosRequestConfig
type AxiosRequestConfig = import('axios').AxiosRequestConfig;

interface IAuthToken {
access_token?: string
refresh_token?: string
access_token_expires_in?: number
access_token_expires_at?: number
access_token?: string;
refresh_token?: string;
access_token_expires_in?: number;
access_token_expires_at?: number;
}

type Nullable<T> = T | null
type Nullable<T> = T | null;
Loading

0 comments on commit 0d9f5e0

Please sign in to comment.