office-ui-fabric-react
Version:
Reusable React components for building experiences for Microsoft 365.
10 lines (9 loc) • 330 B
TypeScript
import { KeytipDataOptions } from './KeytipData.types';
export interface IKeytipData {
ariaDescribedBy: string | undefined;
keytipId: string | undefined;
}
/**
* Hook that creates attributes for components which are enabled with Keytip.
*/
export declare function useKeytipData(options: KeytipDataOptions): IKeytipData;