UNPKG

obsidian-dev-utils

Version:

This is the collection of useful functions that you can use for your Obsidian plugin development

18 lines (15 loc) 302 B
/** * @packageDocumentation debug * Fixed typings for the `debug` package. */ export {}; declare module 'debug' { interface Debug { /** * Loads the debug configuration from the environment. * * @returns The loaded debug configuration. */ load(): null | string; } }