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
Hi,
So I am doing requests to retrieve an array of events, and I noticed that there aren't many types for collections. If i do the following:
const options = { authProvider, }; const client = Client.init(options); let events = await client.api('/me/events').get();
Then events will be an object with the property value being an array of events. Maybe this could be added to the typings to solve this:
export interface GenericCollection<T> { value?: NullableOption<Array<T>>; }
Where T could be any type that has support for lists which could be declared using a type to limit the options.
Hope this is a good idea?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
So I am doing requests to retrieve an array of events, and I noticed that there aren't many types for collections.
If i do the following:
Then events will be an object with the property value being an array of events.
Maybe this could be added to the typings to solve this:
Where T could be any type that has support for lists which could be declared using a type to limit the options.
Hope this is a good idea?
The text was updated successfully, but these errors were encountered: