27 lines
492 B
TypeScript
27 lines
492 B
TypeScript
import { SVGProps } from "react";
|
|
|
|
export type IconSvgProps = SVGProps<SVGSVGElement> & {
|
|
size?: number;
|
|
};
|
|
|
|
export type SidebarMenuTask = {
|
|
childMenu: any[];
|
|
name: string;
|
|
id: number;
|
|
parentId: number;
|
|
position: number;
|
|
statusId: number;
|
|
statusName: string;
|
|
};
|
|
|
|
export type Article = {
|
|
id: number;
|
|
title: string;
|
|
articleCategory: string;
|
|
updated_at: string;
|
|
creator: string;
|
|
source: string;
|
|
status: string;
|
|
actions: string;
|
|
};
|