amotify
Version:
UI Component for React,NextJS,esbuild
15 lines (14 loc) • 371 B
TypeScript
/// <reference types="react" />
import { Span } from '../../atoms';
declare namespace fn {
type RequiredSign = React.FC<Span.Input>;
type Methods = {
remoteUpdate(value: any, opt: {
componentId?: string;
name?: string;
id?: string;
}): void;
};
}
declare const fn: fn.Methods;
export { fn, fn as default };