/**
 * Builds an empty generator with the specified type.
 * @returns An empty generator or specified type.
 */
export function* Empty<T>(): Generator<T> {}
