Skip to content

Instantly share code, notes, and snippets.

@philipshen
Created August 21, 2018 08:46
Show Gist options
  • Save philipshen/9d8a400b044abcc7a2a573043da37c85 to your computer and use it in GitHub Desktop.
Save philipshen/9d8a400b044abcc7a2a573043da37c85 to your computer and use it in GitHub Desktop.
function create(duration: number, type: Types, creationProp: Properties): Config {
return {
duration,
create: {
type,
property: creationProp,
},
update: {
type,
},
delete: {
type,
property: creationProp,
},
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment