UNPKG

@versatiledatakit/shared

Version:

Versatile Data Kit Shared library enables reusability of shared features like: NgRx Redux, Error Handlers, Utils, Generic Components, etc.

19 lines (18 loc) 451 B
/** * ** Part of Features Config. * * - Should be provided when Module is initialized and only once. */ export interface WarningConfig { [WARNING_FEATURE_KEY]: { /** * ** Url that will open portal, where service request should be created. */ serviceRequestUrl: string; }; } /** * ** Key for the feature in Shared Features config object. */ declare const WARNING_FEATURE_KEY = "warning"; export {};