8 lines
259 B
TypeScript
8 lines
259 B
TypeScript
import { CommandModule } from "yargs";
|
|
declare const debugFunctions: readonly ["vram", "cmakeOptions"];
|
|
type DebugCommand = {
|
|
function: (typeof debugFunctions)[number];
|
|
};
|
|
export declare const DebugCommand: CommandModule<object, DebugCommand>;
|
|
export {};
|