UNPKG

@vendasta/store

Version:

Components and data for Store

16 lines (15 loc) 455 B
import { ControlType, FieldBaseOptions } from './field-base'; import { DropdownField } from './field-dropdown'; export interface User { userId: string; email: string; firstName?: string; lastName?: string; } export interface VBCUserFieldOptions extends FieldBaseOptions { users: User[]; } export declare class VBCUserField extends DropdownField { readonly controlType: ControlType; constructor(options: VBCUserFieldOptions); }