We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
for the current implementation
export function from(): IEnumerable<unknown>; export function from<T>(obj: Array<T>): IEnumerable<T>; export function from<T>(obj: IEnumerable<T>): IEnumerable<T>; export function from(obj: number): IEnumerable<number>; export function from(obj: boolean): IEnumerable<boolean>; export function from(obj: string): IEnumerable<string>; export function from<T>(obj: T[]): IEnumerable<T>; export function from<T>(obj: Iterator<T>): IEnumerable<T>; export function from<T>(obj: { length: number;[x: number]: T; }): IEnumerable<T>; export function from<T>(obj: { [key: string]: T }): IEnumerable<{ key: string; value: T }>; export function from<T>(obj: Record<PropertyKey, T>): IEnumerable<{ key: string; value: T }>;
it is missing Array<T> overload.
Array<T>
The text was updated successfully, but these errors were encountered:
What about the second line of your snippet?
export function from<T>(obj: Array<T>): IEnumerable<T>;
Sorry, something went wrong.
No branches or pull requests
for the current implementation
it is missing
Array<T>
overload.The text was updated successfully, but these errors were encountered: