Skip to content

Instantly share code, notes, and snippets.

@shulcsm
Created September 5, 2019 07:43
Show Gist options
  • Save shulcsm/328997d057085fe79a0cb403a048754d to your computer and use it in GitHub Desktop.
Save shulcsm/328997d057085fe79a0cb403a048754d to your computer and use it in GitHub Desktop.
export function createActions<K extends keyof Actions<any>, E>(
endpoint: string,
url: string,
actions: K[],
): Pick<Actions<E>, K> {
return {
item: actions.includes('item') && (
path: `${url}/:id`,
endpoint: {
endpoint: `${endpoint}:id/`,
method: 'GET',
},
)
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment