field-options.ts 133 B

1234567
  1. import { FieldType } from "../types/field";
  2. export class FieldOptions {
  3. readonly name?: string;
  4. readonly type?: FieldType
  5. }