All Downloads are FREE. Search and download functionalities are using the official Maven repository.

types.multiple.ts Maven / Gradle / Ivy

import { FieldRenderType } from 'types/field';
import { Field } from 'types/graphql';

export type MultipleRow = {
  [key: string]: any;
  __basedOn?: {
    [key: string]: any;
  };
};

export type MultipleRows = MultipleRow[];
export type MultipleSelected = number[];
export type MultipleColumn = {
  field?: Field;
  type: 'basedon' | 'input';
  renderType: FieldRenderType;
  name: string;
  attr: string;
  required: boolean;
};






© 2015 - 2024 Weber Informatics LLC | Privacy Policy