export type DeepPartial<T> = T extends Function ? T : (T extends object ? { [P in keyof T]?: DeepPartial<T[P]>; } : T);
Before [email protected]
type DeepPartial = {
export type DeepPartial<T> = T extends Function ? T : (T extends object ? { [P in keyof T]?: DeepPartial<T[P]>; } : T);
type DeepPartial = {
// ==UserScript== | |
// @name MathJax Trello | |
// @description Apply Mathjax to Trello | |
// @include https://trello.com/* | |
// @grant none | |
// ==/UserScript== | |
// INSTALL: https://gist.githubusercontent.com/ViktorQvarfordt/c3f89c3cf50e3dc60b23257294af5710/raw/trello-mathjax.user.js | |
if (window.MathJax === undefined) { |