react-input-pin-code
Version:
Pin input built with React component and styled-components
15 lines (11 loc) • 444 B
TypeScript
import { CssVariable } from '../../types/index.js';
type SetElementCssVariableData = {
element: HTMLElement;
name: string;
value: string;
};
type SetElementCssVariable = (data: SetElementCssVariableData) => void;
declare const isCssVariable: (value: unknown) => value is CssVariable;
declare const setElementCssVariable: SetElementCssVariable;
export { isCssVariable, setElementCssVariable };
//# sourceMappingURL=index.d.ts.map