UNPKG

uplot-vplugins

Version:
7 lines (6 loc) 261 B
//export type n = null | undefined; export type PartialBy<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>; export type RequiredBy<T, K extends keyof T> = Omit<T, K> & Required<Pick<T, K>>; export function Log(...args) { return console.log(...args); }