1
0
mirror of https://github.com/flarum/core.git synced 2025-08-04 07:27:39 +02:00

admin: export AdminLinkButtonProps interface

This commit is contained in:
David Sevilla Martin
2020-05-03 14:48:21 -04:00
parent b00eae1ce9
commit c5f1e30855
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1,6 +1,6 @@
import LinkButton, { LinkButtonProps } from '../../common/components/LinkButton'; import LinkButton, { LinkButtonProps } from '../../common/components/LinkButton';
interface AdminLinkButtonProps extends LinkButtonProps { export interface AdminLinkButtonProps extends LinkButtonProps {
description?: string; description?: string;
} }