plmt-constructor-sdk 0.17.1 → 0.17.2
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/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -248,7 +248,7 @@ import { DataSettings, ViewSettings } from 'plmt-constructor-sdk';
|
|
|
248
248
|
import {
|
|
249
249
|
CreateViewSettings,
|
|
250
250
|
input,
|
|
251
|
-
|
|
251
|
+
ViewSettingsValidationFn,
|
|
252
252
|
} from 'plmt-constructor-sdk/config';
|
|
253
253
|
|
|
254
254
|
let max = 0;
|
|
@@ -269,7 +269,7 @@ export const createViewSettings: CreateViewSettings<DataSettings> = ({
|
|
|
269
269
|
];
|
|
270
270
|
};
|
|
271
271
|
|
|
272
|
-
export const validation:
|
|
272
|
+
export const validation: ViewSettingsValidationFn = (
|
|
273
273
|
viewSettings: ViewSettings,
|
|
274
274
|
) => {
|
|
275
275
|
return {
|