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) 467 B
/** * ** Part of Features Config. * * - Should be provided when Module is initialized and only once. */ export interface PlaceholderConfig { [PLACEHOLDER_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 PLACEHOLDER_FEATURE_KEY = "placeholder"; export {};