Skip to content

Instantly share code, notes, and snippets.

View mangs's full-sized avatar

Eric L. Goldstein mangs

View GitHub Profile
@mangs
mangs / bun_bash_completions.sh
Last active January 30, 2025 06:55
Bun Bash Completions
#!/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)
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,
}),
};