UNPKG

discord-bot-cli

Version:

An easy way to build a command-based discord bot with discord.js.

5 lines (4 loc) 213 B
/** @ignore @see https://gist.github.com/navix/6c25c15e0a2d3cd0e5bce999e0086fc9 */ export declare type DeepPartial<T> = T extends Function ? T : T extends object ? { [P in keyof T]?: DeepPartial<T[P]>; } : T;