UNPKG
@tonaljs/chord-detect
Version:
latest (4.9.1)
4.9.1
4.9.0
4.8.5
4.8.4
4.8.3
4.8.2
4.8.1
4.8.0
4.7.3
4.7.2
4.7.1
4.7.0
4.6.10
4.6.5
4.6.2
4.5.1
4.5.0
3.7.0
3.6.1
3.6.0
3.5.6
3.5.5
3.5.4
3.5.3
3.5.2
3.5.1
3.5.0
Detect chord name based on note names
@tonaljs/chord-detect
/
dist
/
index.d.mts
11 lines
(9 loc)
•
262 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
type
DetectOptions
= {
assumePerfectFifth
:
boolean
; };
declare
function
detect
(
source
:
string
[],
options
?:
Partial
<
DetectOptions
>
):
string
[];
/**
@deprecated
*/
declare
const
_default
: {
detect
:
typeof
detect; };
export
{ _default
as
default
, detect };