gale/drill.d.ts

12 lines
298 B
TypeScript
Raw Normal View History

2025-02-12 16:09:59 -05:00
export {}
declare global {
namespace Gale
{
type Invoker =()=>HTMLElement
type Elemental<T extends string> = {[K in keyof HTMLElementTagNameMap]: Circular<T>}
type Circular<Keys extends string> = {
[K in Keys]: Circular<Keys>&Invoker;
};
}
}