office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
1 lines • 436 B
JavaScript
define([], function() { return "/* tslint:disable:no-unused-variable */\r\nimport * as React from 'react';\r\n/* tslint:enable:no-unused-variable */\r\n\r\nexport interface ILink {\r\n /** Sets focus to the link. */\r\n focus(): void;\r\n}\r\n\r\nexport interface ILinkProps extends React.HTMLProps<HTMLAnchorElement | HTMLButtonElement> {\r\n /**\r\n * Whether the link is disabled\r\n */\r\n disabled?: boolean;\r\n}\r\n"; });