@ismail424/svelte-formly
Version:
<p align="center"> <img width="100%" height="300" src="./logo.png" alt="Svelte Formly" /> </p>
8 lines (7 loc) • 317 B
TypeScript
import type { IField } from './types';
export declare function inArray(arr: Array<any>, element: any): boolean;
export declare function isRequired(field: IField): boolean;
export declare function isFieldDuplicated(fields: IField[]): boolean;
export declare function clickOutside(node: any): {
destroy(): void;
};