@atlasrender/render-plugin
Version:
Atlas Render Farm Manager plugin system.
17 lines (16 loc) • 466 B
TypeScript
import FloatField from "./FloatField";
/**
* IntegerField - class, designed to create integer plugin setting.
* @class
* @author Danil Andreev
*/
export default class IntegerField extends FloatField {
/**
* Creates an instance of IntegerField.
* @param setting - Object with payload to construct entity.
* @throws ValidationError
* @author Danil Andreev
*/
constructor(setting: any);
validatePayload(payload: any): number;
}