@digitaldefiance/express-suite-starter 2.4.13 → 2.4.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digitaldefiance/express-suite-starter",
3
- "version": "2.4.13",
3
+ "version": "2.4.14",
4
4
  "license": "MIT",
5
5
  "bin": {
6
6
  "create-express-suite": "./dist/src/cli.js"
@@ -1,6 +1,12 @@
1
1
  import { IConstants as ISuiteCoreConstants } from '@digitaldefiance/suite-core-lib';
2
+ import type { ISuiteCoreI18nConstants } from '@digitaldefiance/suite-core-lib';
2
3
 
3
- export interface IConstants extends ISuiteCoreConstants {
4
+ /**
5
+ * Application constants interface.
6
+ * Extends ISuiteCoreConstants for general app config and
7
+ * ISuiteCoreI18nConstants for type-safe i18n template variables.
8
+ */
9
+ export interface IConstants extends ISuiteCoreConstants, ISuiteCoreI18nConstants {
4
10
  readonly Site: string;
5
11
  readonly SiteTagline: string;
6
12
  readonly SiteDescription: string;