Index

Type aliases

Variables

Type aliases

ArgumentsType

ArgumentsType<T>: T extends function ? U : never

Type parameters

  • T

ft

ft: object

Type declaration

Variables

Const HintingCmds

HintingCmds: object = new Proxy(functions as any, {get(target, property) {if (target[property]) {return (...args) => messageActiveTab("controller_content", "acceptExCmd", [property].concat(args))}return target[property]}}) as { [k in keyof ft]: (...args: ArgumentsType<ft[k]>) => Promise<ReturnType<ft[k]>> }

Type declaration

Const functions

functions: object = hinting_content.getHintCommands()

Type declaration