start work on cleaning up types and add try a player and server to their pages
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m29s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m29s
This commit is contained in:
27
src/app/types/landing/landing-button.tsx
Normal file
27
src/app/types/landing/landing-button.tsx
Normal file
@ -0,0 +1,27 @@
|
||||
export type LandingButton = {
|
||||
/**
|
||||
* The title of the button.
|
||||
*/
|
||||
title: string;
|
||||
|
||||
/**
|
||||
* The tooltip to display for this statistic.
|
||||
*/
|
||||
tooltip: string;
|
||||
|
||||
/**
|
||||
* The URL to go to.
|
||||
*/
|
||||
url: string;
|
||||
|
||||
/**
|
||||
* Whether clicking the button will
|
||||
* open the link in a new tab.
|
||||
*/
|
||||
openInNewTab?: boolean;
|
||||
|
||||
/**
|
||||
* The class name to apply to the button.
|
||||
*/
|
||||
className?: string;
|
||||
};
|
5
src/app/types/player/page-params.ts
Normal file
5
src/app/types/player/page-params.ts
Normal file
@ -0,0 +1,5 @@
|
||||
export type PlayerPageParams = {
|
||||
params: {
|
||||
id: string;
|
||||
};
|
||||
};
|
8
src/app/types/server/page-params.ts
Normal file
8
src/app/types/server/page-params.ts
Normal file
@ -0,0 +1,8 @@
|
||||
import { ServerPlatform } from "mcutils-library";
|
||||
|
||||
export type ServerPageParams = {
|
||||
params: {
|
||||
platform: ServerPlatform;
|
||||
hostname: string;
|
||||
};
|
||||
};
|
13
src/app/types/server/try-me-server.ts
Normal file
13
src/app/types/server/try-me-server.ts
Normal file
@ -0,0 +1,13 @@
|
||||
import { ServerPlatform } from "mcutils-library";
|
||||
|
||||
export type TryMeServer = {
|
||||
/**
|
||||
* The platform of the server.
|
||||
*/
|
||||
platform: ServerPlatform;
|
||||
|
||||
/**
|
||||
* The hostname of the server.
|
||||
*/
|
||||
hostname: string;
|
||||
};
|
Reference in New Issue
Block a user