24 lines
584 B
24 lines
584 B
/**
|
|
* Generic strings that could be used throughout the app.
|
|
*
|
|
* See also ../libs/veramo/setup.ts
|
|
*/
|
|
export enum AppString {
|
|
APP_NAME = "Time Safari",
|
|
|
|
PROD_ENDORSER_API_SERVER = "https://api.endorser.ch",
|
|
TEST_ENDORSER_API_SERVER = "https://test-api.endorser.ch",
|
|
LOCAL_ENDORSER_API_SERVER = "http://localhost:3000",
|
|
|
|
DEFAULT_ENDORSER_API_SERVER = TEST_ENDORSER_API_SERVER,
|
|
}
|
|
|
|
/**
|
|
* See notiwind package
|
|
*/
|
|
export interface NotificationIface {
|
|
group: string;
|
|
type: string; // "toast" | "info" | "success" | "warning" | "danger"
|
|
title: string;
|
|
text: string;
|
|
}
|
|
|