@c8y/ngx-components
Version:
Angular modules for Cumulocity IoT applications
19 lines (16 loc) • 730 B
TypeScript
import { InjectionToken } from '@angular/core';
declare const pathToDatapointLibrary = "datapointlibrary";
declare const DATAPOINT_LIBRARY_CONFIG: InjectionToken<DatapointLibraryOptions>;
interface DatapointLibraryOptions {
/**
* Allows to define whether the c8y_Global fragment should be added per default on newly created datapoints.
*/
doNotAddGlobalFragmentByDefault?: boolean;
/**
* Will make a checkbox visible that allows the user to take the decision if the c8y_Global fragment should be set or not.
*/
showCheckboxForGlobalFragment?: boolean;
}
export { DATAPOINT_LIBRARY_CONFIG, pathToDatapointLibrary };
export type { DatapointLibraryOptions };
//# sourceMappingURL=index.d.ts.map