mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-11 18:56:41 +00:00
12 lines
292 B
TypeScript
12 lines
292 B
TypeScript
![]() |
import Component from '@glimmer/component';
|
||
|
|
||
|
interface IFoxieDynamicComponentsLinkButtonArgs {
|
||
|
options: {
|
||
|
text: string;
|
||
|
linkTo: string;
|
||
|
linkModel: unknown;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
export default class FoxieDynamicComponentsLinkButton extends Component<IFoxieDynamicComponentsLinkButtonArgs> {}
|