UNPKG

mathlive

Version:

Render and edit beautifully typeset math

12 lines (11 loc) 254 B
/* 0.59.0 */ /** * @internal */ declare type Filter<T, Cond, U extends keyof T = keyof T> = { [K in U]: T[K] extends Cond ? K : never; }[U]; /** * @internal */ export declare type Keys<T> = Filter<T, (...args: any[]) => any> & string; export {};