This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
_bun_completions() { | |
COMP_WORDBREAKS=${COMP_WORDBREAKS//:} | |
COMPREPLY=() | |
local cur="${COMP_WORDS[COMP_CWORD]}" | |
local prev="${COMP_WORDS[COMP_CWORD-1]}" | |
# local all=$(bun getcompletes) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const propTypes = { | |
actions: React.PropTypes.object, | |
store: React.PropTypes.shape({ | |
isConfirmationDialogOpen: React.PropTypes.bool, | |
audioAudioToEdit: React.PropTypes.instanceOf(Immutable.Map), | |
audioDialog: React.PropTypes.instanceOf(Immutable.Map), | |
audioFilterOption: React.PropTypes.string, | |
}), | |
}; |