We very strongly recommend that you pretty much ignore this page and instead follow the link below DEFAULTS that will take you to our own source code which is formatted in a marginally more sane fashion.

Index

Functions

getAsyncDynamic

  • getAsyncDynamic(...target: string[]): Promise<any>
  • Get the value of the key target.

    Please only use this with targets that will be used at runtime - it skips static checks. Prefer [[getAsync]].

    Parameters

    • Rest ...target: string[]

    Returns Promise<any>

getDynamic

  • getDynamic(...target: string[]): any
  • Get the value of the key target.

    Please only use this with targets that will be used at runtime - it skips static checks. Prefer [[get]].

    Parameters

    • Rest ...target: string[]

    Returns any

parseConfig

  • parseConfig(): string
  • Parse the config into a string representation of a .tridactylrc config file. Tries to parse the config into sectionable chunks based on keywords. Binds, aliases, autocmds and logging settings each have their own section while the rest are dumped into "General Settings".

    Returns string

    string The parsed config file.

Const parseConfigHelper

  • parseConfigHelper(pconf: any, parseobj: any): any