Ryujinx-Website/src/types/generic/navigation.ts

6 lines
82 B
TypeScript

export type NavigationNode = {
name: string;
to?: string;
href?: string;
};