@algolia/satellite
Advanced tools
Comparing version 1.0.0-beta.17 to 1.0.0-beta.18
import * as React from "react"; | ||
declare type Props = Utils.Omit<React.InputHTMLAttributes<HTMLInputElement>, "type">; | ||
import { Omit } from "../../utils"; | ||
declare type Props = Omit<React.InputHTMLAttributes<HTMLInputElement>, "type">; | ||
export declare const RadioButton: React.SFC<Props>; | ||
export default RadioButton; |
{ | ||
"name": "@algolia/satellite", | ||
"version": "1.0.0-beta.17", | ||
"version": "1.0.0-beta.18", | ||
"description": "Algolia design system React components", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -8,1 +8,2 @@ export { clamp } from "./clamp"; | ||
export { uniqueId } from "./uniqueId"; | ||
export declare type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>; |
10239269
3629