Files
feishin/src/renderer/types.ts
T
2022-07-25 19:40:16 -07:00

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;
};
}