@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
14 lines (13 loc) • 533 B
TypeScript
//#region src/core/consts.d.ts
declare const cdnUrl = "https://cdn.veracity.com";
declare const cdnStagUrl = "https://cdnstag.veracity.com";
declare const cdnTestUrl = "https://cdntest.veracity.com";
declare const cdnFontsPath = "/common/fonts";
declare const cdnUrls: {
readonly Prod: "https://cdn.veracity.com";
readonly Stag: "https://cdnstag.veracity.com";
readonly Test: "https://cdntest.veracity.com";
};
//#endregion
export { cdnFontsPath, cdnStagUrl, cdnTestUrl, cdnUrl, cdnUrls };
//# sourceMappingURL=consts.d.ts.map