@veltdev/react
Version:
Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.
15 lines (14 loc) • 495 B
TypeScript
import React from 'react';
export interface IVeltAutocompleteChipProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
type?: 'contact' | 'custom' | 'group' | 'loading';
email?: string;
userObject?: any;
userId?: string;
custom?: any;
group?: any;
contact?: any;
shadowDom?: boolean;
defaultCondition?: boolean;
}
declare const VeltAutocompleteChip: React.FC<IVeltAutocompleteChipProps>;
export default VeltAutocompleteChip;