types.ts 96 B

123
  1. export type PlaceholderGenerator<T extends Node = HTMLElement> =
  2. | null
  3. | (() => T | null);