Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F123240138
UsageTabButton.d.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Jul 25, 23:00
Size
725 B
Mime Type
text/x-java
Expires
Sun, Jul 27, 23:00 (2 d)
Engine
blob
Format
Raw Data
Handle
27667790
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
UsageTabButton.d.ts
View Options
import React from 'react';
import PropTypes from 'prop-types';
export interface UsageTabButtonProps {
name: string;
onClick: (e: React.MouseEvent) => void;
active?: boolean;
props: {
props?: any[];
methods?: any[];
};
}
declare const UsageTabButton: {
(props: UsageTabButtonProps): JSX.Element | null;
propTypes: {
onClick: PropTypes.Validator<(...args: any[]) => any>;
name: PropTypes.Validator<string>;
props: PropTypes.Validator<PropTypes.InferProps<{
props: PropTypes.Requireable<any[]>;
methods: PropTypes.Requireable<any[]>;
}>>;
active: PropTypes.Requireable<boolean>;
};
};
export default UsageTabButton;
Event Timeline
Log In to Comment