import ShakeFormComponent from './ShakeFormComponent'; /** * Represents Shake form. */ class ShakeForm { /** * List of components displayed on the form. */ components: Array; constructor(components: Array) { this.components = components; } } export default ShakeForm;