mirror of
https://github.com/zen-browser/surfer.git
synced 2025-07-10 10:15:31 +02:00
🎉 Copy all the melon code over
This commit is contained in:
parent
f32d867abc
commit
5777e350af
38 changed files with 2727 additions and 0 deletions
19
src/types.d.ts
vendored
Normal file
19
src/types.d.ts
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
export interface Cmd {
|
||||
cmd: string;
|
||||
description: string;
|
||||
|
||||
controller: (...args: any) => void;
|
||||
|
||||
options?: CmdOption[];
|
||||
aliases?: string[];
|
||||
flags?: {
|
||||
platforms?: CmdFlagPlatform[];
|
||||
};
|
||||
}
|
||||
|
||||
export interface CmdOption {
|
||||
arg: string;
|
||||
description: string;
|
||||
}
|
||||
|
||||
export type CmdFlagPlatform = NodeJS.Platform;
|
Loading…
Add table
Add a link
Reference in a new issue