Files
super-app/App/common/constants/BuildConfigConstants.ts
2024-12-11 05:47:17 +00:00

20 lines
344 B
TypeScript

export enum BuildConfigConstants {
BASE_URL = "baseUrl",
APP_VERSION_NAME = "appVersionName",
APP_VERSION_CODE = "appVersionCode",
FLAVOR = "flavor",
}
export const ApiMethod = {
POST: "POST",
GET: "GET",
PUT: "PUT",
DELETE: "DELETE",
PATCH: "PATCH",
};
export enum OsTypeConstants {
IOS = "ios",
ANDROID = "android",
}