Skip to content
New issue

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

[RFR] Migrate remaining actions and side effects to Typescript #2824

Merged
merged 13 commits into from
Jan 29, 2019
Merged
4 changes: 2 additions & 2 deletions packages/ra-core/src/actions/accumulateActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ export interface CrudGetMatchingAccumulateAction {
export const crudGetMatchingAccumulate = (
reference: string,
relatedTo: string,
pagination: object,
sort: object,
pagination: { page: number; perPage: number },
sort: { field: string; order: string },
filter: object
): CrudGetMatchingAccumulateAction => {
const action = crudGetMatching(
Expand Down
342 changes: 0 additions & 342 deletions packages/ra-core/src/actions/dataActions.js

This file was deleted.

Loading