mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-08 13:00:13 +02:00
11 lines
200 B
TypeScript
11 lines
200 B
TypeScript
import { AppRoute } from './router/utils/routes';
|
|
|
|
export interface CardRow {
|
|
align?: 'left' | 'center' | 'right';
|
|
prop: string;
|
|
route?: {
|
|
prop: string;
|
|
route: AppRoute | string;
|
|
};
|
|
}
|