beepody
Version:
Beep melody utilities.
20 lines (16 loc) • 385 B
text/typescript
/**
* Default beep frequency in hertz.
*/
export const DEFAULT_FREQUENCY = 440
/**
* Default beep length in milliseconds.
*/
export const DEFAULT_LENGTH = 200
/**
* Character to separate notes in beep sequence URL hash.
*/
export const NOTE_DELIMITER = '|'
/**
* Character to separate parameters in notes in beep sequence URL hash.
*/
export const PARAMETER_DELIMITER = '^'