You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
356 B
12 lines
356 B
export interface PickConfig {
|
|
aria?: boolean;
|
|
data?: boolean;
|
|
attr?: boolean;
|
|
}
|
|
/**
|
|
* Picker props from exist props with filter
|
|
* @param props Passed props
|
|
* @param ariaOnly boolean | { aria?: boolean; data?: boolean; attr?: boolean; } filter config
|
|
*/
|
|
export default function pickAttrs(props: object, ariaOnly?: boolean | PickConfig): {};
|